| 1 | <?php |
||
| 30 | trait StaticManagerTrait |
||
| 31 | { |
||
| 32 | /** |
||
| 33 | * Provides a static interface for event dispatcher's dynamic methods |
||
| 34 | * |
||
| 35 | * @param string $name method name |
||
| 36 | * @param array $arguments arguments |
||
| 37 | * @return mixed |
||
| 38 | * @access public |
||
| 39 | * @static |
||
| 40 | * @internal |
||
| 41 | */ |
||
| 42 | public static function __callStatic($name, array $arguments) |
||
| 60 | } |
||
| 61 |