| 1 | <?php | ||
| 9 | class ConversationServiceProvider extends AbstractServiceProvider | ||
| 10 | { | ||
| 11 | protected $provides = [ | ||
| 12 | ConversationManager::class, | ||
| 13 | ]; | ||
| 14 | |||
| 15 | /** | ||
| 16 | * Use the register method to register items with the container via the | ||
| 17 | * protected $this->container property or the `getContainer` method | ||
| 18 | * from the ContainerAwareTrait. | ||
| 19 | * | ||
| 20 | * @return void | ||
| 21 | */ | ||
| 22 | public function register() | ||
| 28 | } | ||
| 29 |