Passed
Push — master ( 89d4ac...68779c )
by Claudio
02:14
created

Configuration::getNullableSort()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
ccs 0
cts 2
cp 0
crap 2
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Budgegeria\IntlSort\Collator;
6
7
class Configuration
8
{
9
    public const NULL_VALUES_FIRST = 1;
10
    public const NULL_VALUES_LAST  = 2;
11
12
    private ?int $nullableSort = null;
13
14
    public function setNullableSort(?int $value): void
15
    {
16
        $this->nullableSort = $value;
17
    }
18
19
    public function getNullableSort(): ?int
20
    {
21
        return $this->nullableSort;
22
    }
23
}
24