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

Facade   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 10
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 4 1
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