ImageCacher   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 7
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 4 1
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
}