GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( f02f00...968d20 )
by Rick
03:07
created

Boolean::shouldBreakChainOnError()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

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
eloc 2
nc 1
nop 0
crap 1
1
<?php
2
/**
3
 * Particle.
4
 *
5
 * @link      http://github.com/particle-php for the canonical source repository
6
 * @copyright Copyright (c) 2005-2016 Particle (http://particle-php.com)
7
 * @license   https://github.com/particle-php/validator/blob/master/LICENSE New BSD License
8
 */
9
namespace Particle\Validator\Rule;
10
11
use Particle\Validator\Rule;
12
13
/**
14
 * This rule is for validating if a value is a boolean value.
15
 *
16
 * @package Particle\Validator\Rule
17
 */
18
class Boolean extends Rule
19
{
20
    /**
21
     * A constant that will be used when the value is not in the array without strict checking.
22
     */
23
    const NOT_BOOL = 'BOOL::NOT_BOOL';
24
25
    /**
26
     * The message templates which can be returned by this validator.
27
     *
28
     * @var array
29
     */
30
    protected $messageTemplates = [
31
        self::NOT_BOOL => '{{ name }} must be either true or false',
32
    ];
33
34
    /**
35
     * Validates if $value is either true or false.
36
     *
37
     * @param mixed $value
38
     * @return bool
39
     */
40 11
    public function validate($value)
41
    {
42 11
        return is_bool($value) ?: $this->error(self::NOT_BOOL);
43
    }
44
45
    /**
46
     * {@inheritdoc}
47
     */
48 6
    public function shouldBreakChainOnError()
49
    {
50 6
        return true;
51
    }
52
}
53