1 | <?php |
||
12 | class HelloWorld extends AbstractServiceProvider |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * @var array |
||
17 | */ |
||
18 | protected $provides = [ |
||
19 | \PhpBootstrap\Contracts\Hello::class |
||
20 | ]; |
||
21 | |||
22 | /** |
||
23 | * Use the register method to register items with the container via the |
||
24 | * protected $this->container property or the `getContainer` method |
||
25 | * from the ContainerAwareTrait. |
||
26 | * |
||
27 | * @return void |
||
28 | */ |
||
29 | public function register() |
||
38 | } |