20 lines
493 B
PHP
20 lines
493 B
PHP
|
<?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 {
|
||
|
}
|
||
|
}
|