Passed
Push — master ( feac44...0272f5 )
by Aleksandr
33:21
created

_GROUP::column()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 1

Importance

Changes 0
Metric Value
eloc 4
c 0
b 0
f 0
dl 0
loc 6
ccs 5
cts 5
cp 1
rs 10
cc 1
nc 1
nop 0
crap 1
1
<?php
2
/**
3
 * This file is part of the eav package.
4
 * @author    Aleksandr Drobotik <[email protected]>
5
 * @copyright 2023 Aleksandr Drobotik
6
 * @license   https://opensource.org/license/mit  The MIT License
7
 */
8
declare(strict_types=1);
9
10
namespace Drobotik\Eav\Enum;
11
12
use Drobotik\Eav\Interface\DefineTableInterface;
13
14
class _GROUP implements DefineTableInterface
15
{
16
17
    public const ID = 'group_id';
18
    public const SET_ID = 'set_id';
19
    public const NAME = 'name';
20 1
21
    public static function table() : string
22 1
    {
23
        return 'eav_attribute_groups';
24
    }
25
}
26