1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-13 06:32:40 +01:00
invoiceninja/app/Utils/ClientPortal/CustomMessage/CustomMessageFacade.php

14 lines
234 B
PHP
Raw Normal View History

<?php
namespace App\Utils\ClientPortal\CustomMessage;
use Illuminate\Support\Facades\Facade;
class ClientPortalFacade extends Facade
{
protected static function getFacadeAccessor()
{
return 'customMessage';
}
}