Completed
Push — master ( a7a021...f69651 )
by David
01:07
created

ImageCacher::getFacadeAccessor()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace GNAHotelSolutions\ImageCacher\Adapters\Laravel\Facades;
4
5
use GNAHotelSolutions\ImageCacher\Cacher;
6
use Illuminate\Support\Facades\Facade;
7
8
/**
9
 * @method static Image resize(string|Image $image, int|null $width, int|null $height)
10
 * @method static Image crop(string|Image $image, int|null $width, int|null $height)
11
 *
12
 * @see \GNAHotelSolutions\ImageCacher\Cacher
13
 */
14
class ImageCacher extends Facade
15
{
16
    public static function getFacadeAccessor()
17
    {
18
        return Cacher::class;
19
    }
20
}