EntityFactoryException::undefinedAttributeArray()   A
last analyzed

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
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
ccs 2
cts 2
cp 1
crap 1
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * This file is part of the eav package.
4
 * @author    Alex Kuperwood <[email protected]>
5
 * @copyright 2025 Alex Kuperwood
6
 * @license   https://opensource.org/license/mit  The MIT License
7
 */
8
declare(strict_types=1);
9
10
namespace Kuperwood\Eav\Exception;
11
12
use Exception;
13
14
class EntityFactoryException extends Exception
15
{
16
    public const UNDEFINED_ATTRIBUTE_ARRAY = 'Attribute array must be provided!';
17
18
    /**
19
     * @throws EntityFactoryException
20
     */
21 1
    public static function undefinedAttributeArray()
22
    {
23 1
        throw new static(self::UNDEFINED_ATTRIBUTE_ARRAY);
24
    }
25
}