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