for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This Driver is a Laravel integration for the package php-mattermost-driver
* (https://github.com/gnello/php-mattermost-driver)
*
* For the full copyright and license information, please read the LICENSE.txt
* file that was distributed with this source code. For the full list of
* contributors, visit https://github.com/gnello/laravel-mattermost-driver/contributors
* God bless this mess too.
* @author Luca Agnello <[email protected]>
* @link https://api.mattermost.com/
*/
namespace Gnello\Mattermost\Laravel\Facades;
use Illuminate\Support\Facades\Facade;
* Class Mattermost
* @package Gnello\Mattermost\Laravel\Facades
class Mattermost extends Facade
{
* Get the registered name of the component.
* @return string
protected static function getFacadeAccessor()
return 'mattermost';
}