Passed
Push — master ( fd6ae4...b59e9d )
by Carlos C
01:58
created

GenericOverrideException::formatGenericMessage()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
eloc 1
c 0
b 0
f 0
dl 0
loc 3
ccs 2
cts 2
cp 1
rs 10
cc 1
nc 1
nop 3
crap 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Eclipxe\Enum\Exceptions;
6
7
use OutOfRangeException;
8
use Throwable;
9
10
abstract class GenericOverrideException extends OutOfRangeException implements EnumExceptionInterface
11
{
12
    /**
13
     * @param string $className
14
     * @param string $value
15
     * @param Throwable|null $previous
16
     * @return static
17
     */
18
    abstract public static function create(string $className, string $value, Throwable $previous = null);
19
20 2
    protected static function formatGenericMessage(string $className, string $typeName, string $value): string
21
    {
22 2
        return sprintf('%s cannot override %s to %s', $className, $typeName, $value);
23
    }
24
}
25