2020-04-13 03:48:23 +02:00
|
|
|
<?php
|
2020-09-21 12:54:58 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-09-21 12:54:58 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-09-21 12:54:58 +02:00
|
|
|
*/
|
2020-04-13 03:48:23 +02:00
|
|
|
|
|
|
|
namespace App\Utils\ClientPortal\CustomMessage;
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
|
2020-04-15 02:30:52 +02:00
|
|
|
class CustomMessageFacade extends Facade
|
2020-04-13 03:48:23 +02:00
|
|
|
{
|
|
|
|
protected static function getFacadeAccessor()
|
|
|
|
{
|
|
|
|
return 'customMessage';
|
|
|
|
}
|
|
|
|
}
|