1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Providers/ClientPortalServiceProvider.php

32 lines
528 B
PHP
Raw Normal View History

<?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()
{
//
}
}