Passed
Push — master ( 745d1c...3876a5 )
by Morten Poul
03:21
created

Translator   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 10
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
namespace Signifly\Translator\Facades;
4
5
use Illuminate\Support\Facades\Facade;
6
use Signifly\Translator\Contracts\Translator as TranslatorContract;
7
8
class Translator extends Facade
9
{
10
    /**
11
     * Get the registered name of the component.
12
     *
13
     * @return string
14
     */
15
    protected static function getFacadeAccessor()
16
    {
17
        return TranslatorContract::class;
18
    }
19
}
20