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

19 lines
395 B
PHP

<?php
namespace nur\sery\schema\values;
use nur\sery\schema\Value;
use nur\sery\schema\Result;
class AssocValue extends Value {
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 {
}
}