Completed
Push — master ( 0646cc...408e0c )
by Propa
05:16
created

Language::resolveFacadeInstance()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 10
Code Lines 5

Duplication

Lines 10
Ratio 100 %

Code Coverage

Tests 5
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 5
nc 1
nop 1
dl 10
loc 10
ccs 5
cts 5
cp 1
crap 1
rs 9.4285
c 0
b 0
f 0
1
<?php namespace Propaganistas\LaravelIntl\Facades;
2
3
use Illuminate\Support\Facades\Facade;
4
5
class Language extends Facade
6
{
7
    /**
8
     * Get the registered name of the component.
9
     *
10
     * @return string
11
     */
12 18
    protected static function getFacadeAccessor()
13
    {
14 18
        return 'intl.language';
15
    }
16
}