Passed
Push — master ( 048cfc...89074f )
by
unknown
12:32
created

MessageTypeType   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 10
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 8 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Application\Api\Enum;
6
7
class MessageTypeType extends AbstractEnumType
8
{
9
    public function __construct()
10
    {
11
        $config = [
12
            \Application\DBAL\Types\MessageTypeType::MONTLY_REMINDER => 'rappel mensuel',
13
            \Application\DBAL\Types\MessageTypeType::YEARLY_REMINDER => 'rappel annuel',
14
        ];
15
16
        parent::__construct($config);
17
    }
18
}
19