Mattermost::getFacadeAccessor()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * This Driver is a Laravel integration for the package php-mattermost-driver
5
 * (https://github.com/gnello/php-mattermost-driver)
6
 *
7
 * For the full copyright and license information, please read the LICENSE.txt
8
 * file that was distributed with this source code. For the full list of
9
 * contributors, visit https://github.com/gnello/laravel-mattermost-driver/contributors
10
 *
11
 * God bless this mess too.
12
 *
13
 * @author Luca Agnello <[email protected]>
14
 * @link https://api.mattermost.com/
15
 */
16
17
namespace Gnello\Mattermost\Laravel\Facades;
18
19
use Illuminate\Support\Facades\Facade;
20
21
/**
22
 * Class Mattermost
23
 *
24
 * @package Gnello\Mattermost\Laravel\Facades
25
 */
26
class Mattermost extends Facade
27
{
28
    /**
29
     * Get the registered name of the component.
30
     *
31
     * @return string
32
     */
33
    protected static function getFacadeAccessor()
34
    {
35
        return 'mattermost';
36
    }
37
}