Passed
Push — main ( 11848c...4790f2 )
by Breno
02:08
created

Operator::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 0
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 2
rs 10
1
<?php
2
declare(strict_types=1);
3
4
namespace BrenoRoosevelt\Validation;
5
6
final class Operator
7
{
8
    const EQUAL = 'equal to';
9
    const EXACTLY = 'exactly';
10
    const GREATER_THAN = 'greater than';
11
    const GREATER_THAN_EQUAL = 'greater than or equal to';
12
    const LESS_THAN = 'less than';
13
    const LESS_THAN_EQUAL = 'less than or equal to';
14
    const NOT_EQUAL = 'not equal to';
15
    const NOT_EXACTLY = 'not exactly';
16
17
    /** @codeCoverageIgnore */
18
    private function __construct()
19
    {
20
    }
21
}
22