1 | <?php |
||
12 | class IntentServiceProvider extends AbstractServiceProvider |
||
13 | { |
||
14 | protected $provides = [ |
||
15 | IntentManager::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(): void |
||
46 | } |
||
47 |