nur-sery/wip/schema/_assoc/AssocValue.php

19 lines
407 B
PHP
Raw Normal View History

2023-11-09 10:03:35 +04:00
<?php
2024-05-23 08:15:28 +04:00
namespace nur\sery\wip\schema\_assoc;
2023-11-09 10:03:35 +04:00
2024-05-23 08:15:28 +04:00
use nur\sery\wip\schema\Result;
use nur\sery\wip\schema\Value;
2023-11-09 10:03:35 +04:00
2023-11-27 22:39:35 +04:00
class AssocValue extends Value {
2023-11-09 10:03:35 +04:00
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 {
}
}