Passed
Push — master ( 8c743d...154964 )
by Eudald
10:11
created

Gocardless   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
1
<?php
2
/**
3
 * Part of the GoCardless Pro PHP Client package integration for Laravel
4
 *
5
 * NOTICE OF LICENSE
6
 *
7
 * Licensed under the MIT License.
8
 *
9
 * This source file is subject to the MIT License that is
10
 * bundled with this package in the LICENSE file.
11
 *
12
 * @package    Gocardless Laravel
13
 * @version    0.1.0
14
 * @author     Nested.net
15
 * @license    MIT
16
 * @link       https://nested.net
17
 */
18
19
namespace Nestednet\Gocardless\Facades;
20
21
use Illuminate\Support\Facades\Facade;
22
23
class Gocardless extends Facade
24
{
25
    /**
26
     *  {@inheritDoc}
27
     */
28
    protected static function getFacadeAccessor()
29
    {
30
        return 'gocardless';
31
    }
32
}