| 1 | <?php |
||
| 7 | class Errors implements BaseFactoryInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Construct the repository class name based on |
||
| 11 | * the method name called, search in the |
||
| 12 | * given namespaces for the class and |
||
| 13 | * return an instance. |
||
| 14 | * |
||
| 15 | * @param string $name the called method name |
||
| 16 | * @param array $arguments the method arguments |
||
| 17 | * @return object |
||
| 18 | */ |
||
| 19 | public function __call($name, $arguments) |
||
| 31 | } |
||
| 32 |