ImageCacher::getFacadeAccessor()   A
last analyzed

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
 * @method static Cacher setOutputFormat(string)
12
 *
13
 * @see \GNAHotelSolutions\ImageCacher\Cacher
14
 */
15
class ImageCacher extends Facade
16
{
17
    public static function getFacadeAccessor()
18
    {
19
        return Cacher::class;
20
    }
21
}