9 lines
193 B
PHP
9 lines
193 B
PHP
<?php
|
|
namespace nur\sery\wip\schema\_list;
|
|
|
|
use nur\sery\wip\schema\Result;
|
|
|
|
class ListResult extends Result {
|
|
function isList(?ListResult &$list=null): bool { $list = $this; return true;}
|
|
}
|