Passed
Pull Request — master (#18)
by
unknown
09:25 queued 04:40
created

TableType::defineCustomAttributeProperties()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 16
Code Lines 10

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 10
dl 0
loc 16
rs 9.9332
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
namespace Flagbit\Bundle\TableAttributeBundle\AttributeType;
4
5
use Akeneo\Pim\Structure\Component\AttributeType\AbstractAttributeType;
6
7
class TableType extends AbstractAttributeType
8
{
9
    const FLAGBIT_CATALOG_TABLE = 'flagbit_catalog_table';
10
11
    /**
12
     * {@inheritdoc}
13
     */
14
    public function getName()
15
    {
16
        return self::FLAGBIT_CATALOG_TABLE;
17
    }
18
}
19