Passed
Push — master ( 17e6cc...350d8b )
by Aleksandr
41:29 queued 06:24
created

NotNullConstraint::validate()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 6

Importance

Changes 0
Metric Value
cc 2
eloc 3
nc 2
nop 1
dl 0
loc 6
ccs 0
cts 4
cp 0
crap 6
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Kuperwood\Eav\Validation\Constraints;
4
5
use Kuperwood\Eav\Interfaces\ConstraintInterface;
6
7
class NotNullConstraint implements ConstraintInterface
8
{
9
    public function validate($value): ?string
10
    {
11
        if ($value === null) {
12
            return "This value cannot be null.";
13
        }
14
        return null;
15
    }
16
}
17