v1.0.2
v1.0.2, includes the following updates:
-
The
ChatBotService
now has dependency injection for theClient
class. This allows the service to use theClient
instance that is registered in the Laravel service container, improving the structure and maintainability of the code. -
The
ChatBotServiceProvider
has been updated to bind theClient
class to the Laravel service container. This ensures that whenever theClient
class is type-hinted in theChatBotService
, Laravel's service container will automatically inject the instance that was registered in the service provider.
These changes improve the overall structure of the code and make it easier to manage dependencies within the ChatBotService
.