Completed
Push — master ( 9b376c...787c0a )
by Jean C.
02:03
created

Moip::getFacadeAccessor()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 3
Bugs 0 Features 0
Metric Value
c 3
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace Artesaos\Moip\Facades;
4
5
use Illuminate\Support\Facades\Facade as BaseFacade;
6
7
class Moip extends BaseFacade
0 ignored issues
show
Comprehensibility Best Practice introduced by
The type Artesaos\Moip\Facades\Moip has been defined more than once; this definition is ignored, only the first definition in src/Facades/Moip.php (L7-18) is considered.

This check looks for classes that have been defined more than once.

If you can, we would recommend to use standard object-oriented programming techniques. For example, to avoid multiple types, it might make sense to create a common interface, and then multiple, different implementations for that interface.

This also has the side-effect of providing you with better IDE auto-completion, static analysis and also better OPCode caching from PHP.

Loading history...
8
{
9
    /**
10
     * Get the registered name of the component.
11
     *
12
     * @return string
13
     */
14
    protected static function getFacadeAccessor()
15
    {
16
        return 'moip';
17
    }
18
}
19