1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-12 22:22:32 +01:00

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