updates for service providers

This commit is contained in:
David Bomba 2023-07-07 16:07:52 +10:00
parent d0b09b5bd1
commit 1af53b9696

View File

@ -14,9 +14,7 @@ class ClientPortalServiceProvider extends ServiceProvider
*/
public function register()
{
app()->bind('customMessage', function () {
return new CustomMessage();
});
}
/**
@ -26,6 +24,9 @@ class ClientPortalServiceProvider extends ServiceProvider
*/
public function boot()
{
//
app()->bind('customMessage', function () {
return new CustomMessage();
});
}
}