Passed
Push — master ( 17e6cc...350d8b )
by Aleksandr
41:29 queued 06:24
created

_VALUE::table()   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 1
Bugs 0 Features 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 1
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\Enum;
11
12
use Kuperwood\Eav\Interfaces\DefineTableInterface;
13
14
class _VALUE implements DefineTableInterface
15
{
16
17
    public const ID = 'value_id';
18
    public const DOMAIN_ID = 'domain_id';
19
    public const ENTITY_ID = 'entity_id';
20
    public const ATTRIBUTE_ID = 'attribute_id';
21
    public const VALUE = 'value';
22
23 1
    public static function table() : string
24
    {
25 1
        return 'eav_value_%s';
26
    }
27
28
}
29