nur-sery/src/schema/values/AssocValue.php

20 lines
493 B
PHP
Raw Normal View History

2023-11-09 10:03:35 +04:00
<?php
namespace nur\sery\schema\values;
class AssocValue implements IValue {
use TValue;
function isScalar(?ScalarValue &$scalar=null): bool { return false; }
function isSeq(?SeqValue &$seq=null): bool { return false; }
function isAssoc(?AssocValue &$assoc=null): bool { $assoc = $this; return true; }
function ensureKeys(): bool {
}
function orderKeys(): bool {
}
/** @param Result[] $results */
function verifix(bool $throw=true, ?array &$results=null): bool {
}
}