nur-sery/wip/schema/_list/ListValue.php

20 lines
402 B
PHP
Raw Permalink 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\_list;
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 ListValue extends Value {
2023-11-25 10:04:24 +04:00
function isList(?ListValue &$list=null): bool { $list = $this; return true; }
2023-11-09 10:03:35 +04:00
function ensureKeys(): bool {
}
function orderKeys(): bool {
}
/** @param Result[] $results */
function verifix(bool $throw=true, ?array &$results=null): bool {
}
}