Completed
Push — master ( 0a0b1f...9f4c09 )
by Adrien
01:48
created

CellAlignment::isValid()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
crap 1
1
<?php
2
3
namespace Box\Spout\Common\Entity\Style;
4
5
/**
6
 * Class Alignment
7
 * This class provides constants to work with text alignment.
8
 */
9
abstract class CellAlignment
10
{
11
    const LEFT = 'left';
12
    const RIGHT = 'right';
13
    const CENTER = 'center';
14
    const JUSTIFY = 'justify';
15
16
    private static $VALID_ALIGNMENTS = [
17
        self::LEFT => 1,
18
        self::RIGHT => 1,
19
        self::CENTER => 1,
20
        self::JUSTIFY => 1,
21
    ];
22
23
    /**
24
     * @param string $cellAlignment
25
     *
26
     * @return bool Whether the given cell alignment is valid
27
     */
28 4
    public static function isValid($cellAlignment)
29
    {
30 4
        return isset(self::$VALID_ALIGNMENTS[$cellAlignment]);
31
    }
32
}
33