Passed
Pull Request — 2.x (#586)
by Bekzat
04:25
created

ImageService   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 8
ccs 0
cts 2
cp 0
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 A17\Twill\Services\MediaLibrary;
4
5
use Illuminate\Support\Facades\Facade;
6
7
class ImageService extends Facade
8
{
9
    /**
10
     * @return string
11
     */
12
    protected static function getFacadeAccessor()
13
    {
14
        return 'imageService';
15
    }
16
}
17