1 | <?php |
||
9 | class Helpers implements HelpersInterface |
||
10 | { |
||
11 | protected $factories = []; |
||
12 | protected $helpers = []; |
||
13 | |||
14 | 4 | public function __construct(array $factories = []) |
|
21 | |||
22 | 3 | public function register(string $name, callable $factory): self |
|
27 | |||
28 | 2 | public function get(string $name) |
|
42 | |||
43 | 3 | public function has(string $name): bool |
|
47 | } |