Passed
Push — dependabot/composer/league/fly... ( c66e34...b8cdf7 )
by
unknown
08:31
created

MediaGroupMediaItemNotFound::forMediaItemId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Backend\Modules\MediaLibrary\Domain\MediaGroupMediaItem\Exception;
4
5
class MediaGroupMediaItemNotFound extends \Exception
6
{
7
    public static function forMediaItemId(string $id): self
8
    {
9
        return new self("Can't find a MediaGroupMediaItem with mediaItemId = \"$id\".");
10
    }
11
}
12