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

9 lines
185 B
PHP
Raw Normal View History

2023-11-28 00:20:42 +04:00
<?php
namespace nur\sery\schema\_list;
use nur\sery\schema\Result;
class ListResult extends Result {
2023-11-28 08:20:33 +04:00
function isList(?ListResult &$list=null): bool { $list = $this; return true;}
2023-11-28 00:20:42 +04:00
}