Passed
Push — master ( 43186b...d45fb7 )
by Gabriel
14:32
created

Pending   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getColorClass() 0 3 1
1
<?php
2
namespace ByTIC\Payments\Models\Transactions\Statuses;
3
4
/**
5
 * Class Pending
6
 * @package ByTIC\Payments\Models\Transactions\Statuses
7
 */
8
class Pending extends AbstractStatus
9
{
10
    public const NAME = 'pending';
11
12
    /**
13
     * @return string
14
     */
15
    public function getColorClass()
16
    {
17
        return 'warning';
18
    }
19
}
20