AbstractStatus   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
eloc 2
c 1
b 0
f 1
dl 0
loc 8
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getColor() 0 3 1
1
<?php
2
3
namespace ByTIC\Models\SmartProperties\Tests\Fixtures\RecordsTraits\HasSmartProperties\RegistrationStatuses;
4
5
/**
6
 * Class AbstractStatus
7
 * @package KM42\Register\Models\Events\Pacers\RegistrationStatuses
8
 */
9
abstract class AbstractStatus extends \ByTIC\Models\SmartProperties\Properties\Statuses\Generic
10
{
11
    /**
12
     * @return string
13
     */
14
    public function getColor()
15
    {
16
        return '#999';
17
    }
18
}
19