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

ImageCacher   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
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
 *
12
 * @see \GNAHotelSolutions\ImageCacher\Cacher
13
 */
14
class ImageCacher extends Facade
15
{
16
    public static function getFacadeAccessor()
17
    {
18
        return Cacher::class;
19
    }
20
}