Completed
Push — master ( c2f76d...03586b )
by Freek
11:35
created

InvalidTinyJpg::hasWrongMimeType()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 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