for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @package Vansteen\Sendinblue
* @author Thomas Van Steenwinckel <[email protected]>
* @link https://github.com/vansteen/laravel-sendinblue
* @license https://github.com/vansteen/laravel-sendinblue/blob/master/license.md (MIT License)
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Vansteen\Sendinblue\Facades;
use Illuminate\Support\Facades\Facade;
class Sendinblue extends Facade
{
* Get the registered name of the component.
* @return string
protected static function getFacadeAccessor()
return 'sendinblue';
}