mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 06:32:40 +01:00
14 lines
234 B
PHP
14 lines
234 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Utils\ClientPortal\CustomMessage;
|
||
|
|
||
|
use Illuminate\Support\Facades\Facade;
|
||
|
|
||
|
class ClientPortalFacade extends Facade
|
||
|
{
|
||
|
protected static function getFacadeAccessor()
|
||
|
{
|
||
|
return 'customMessage';
|
||
|
}
|
||
|
}
|