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

20 lines
390 B
PHP
Raw Normal View History

2023-11-09 10:03:35 +04:00
<?php
2023-11-28 00:20:42 +04:00
namespace nur\sery\schema\_list;
2023-11-09 10:03:35 +04:00
2023-11-27 22:39:35 +04:00
use nur\sery\schema\Result;
use nur\sery\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 {
}
}