InvalidTinyJpg   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A doesNotExist() 0 4 1
A hasWrongMimeType() 0 6 1
1
<?php
2
3
namespace Spatie\MediaLibrary\ResponsiveImages\Exceptions;
4
5
use Exception;
6
use Spatie\MediaLibrary\Helpers\File;
7
8
class InvalidTinyJpg extends Exception
9
{
10
    public static function doesNotExist(string $tinyImageDestinationPath)
11
    {
12
        return new static("The expected tiny jpg at `{$tinyImageDestinationPath}` does not exist");
13
    }
14
15
    public static function hasWrongMimeType(string $tinyImageDestinationPath)
16
    {
17
        $foundMimeType = File::getMimeType($tinyImageDestinationPath);
18
19
        return new static("Expected the file at {$tinyImageDestinationPath} have mimetype `image/jpeg`, but found a file with mimetype `{$foundMimeType}`");
20
    }
21
}
22