Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
DictionaryFormatter | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
getFacadeAccessor | |
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
1 | <?php |
2 | |
3 | namespace Qmp\Laravel\DictionaryFormatter\Facades; |
4 | |
5 | use Illuminate\Support\Facades\Facade; |
6 | |
7 | class DictionaryFormatter extends Facade |
8 | { |
9 | /** |
10 | * Get the registered name of the component. |
11 | * |
12 | * @return string |
13 | */ |
14 | protected static function getFacadeAccessor() { return 'dictionaryFormatter'; } |
15 | } |