1 | <?php |
||
12 | abstract class ViewModel implements Arrayable |
||
13 | { |
||
14 | protected $ignore = []; |
||
15 | |||
16 | public function toArray(): array |
||
38 | |||
39 | protected function shouldIgnore(string $methodName): bool |
||
47 | |||
48 | protected function ignoredMethods(): array |
||
56 | |||
57 | protected function createVariableFromMethod(ReflectionMethod $method) |
||
65 | } |
||
66 |