mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
33 lines
520 B
PHP
33 lines
520 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Utils\ClientPortal\CustomMessage\CustomMessage;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class ClientPortalServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
app()->bind('customMessage', function () {
|
|
return new CustomMessage();
|
|
});
|
|
|
|
}
|
|
|
|
/**
|
|
* Bootstrap services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
|
|
}
|
|
}
|