Completed
Push — master ( 03348d...edfc47 )
by Michał
08:06
created

Facade::getFacadeAccessor()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php namespace nyx\notify;
2
3
/**
4
 * Notify Service Facade
5
 *
6
 * @package     Nyx\Notify
7
 * @version     0.1.0
8
 * @author      Michal Chojnacki <[email protected]>
9
 * @copyright   2012-2017 Nyx Dev Team
10
 * @link        https://github.com/unyx/nyx
11
 * @see         TransportManager
12
 */
13
class Facade extends \Illuminate\Support\Facades\Facade
14
{
15
    /**
16
     * {@inheritDoc}
17
     */
18
    protected static function getFacadeAccessor()
19
    {
20
        return TransportManager::class;
21
    }
22
}
23