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

IsArray::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 an array.
15
 *
16
 * @package Particle\Validator\Rule
17
 */
18
class IsArray extends Rule
19
{
20
    /**
21
     * A constant that will be used when the value does not represent an integer value.
22
     */
23
    const NOT_AN_ARRAY = 'IsArray::NOT_AN_ARRAY';
24
25
    /**
26
     * The message templates which can be returned by this validator.
27
     *
28
     * @var array
29
     */
30
    protected $messageTemplates = [
31
        self::NOT_AN_ARRAY => '{{ name }} must be an array',
32
    ];
33
34
    /**
35
     * Validates if $value is an array.
36
     *
37
     * @param mixed $value
38
     * @return bool
39
     */
40 8
    public function validate($value)
41
    {
42 8
        if (is_array($value)) {
43 3
            return true;
44
        }
45
46 5
        return $this->error(self::NOT_AN_ARRAY);
47
    }
48
49
    /**
50
     * {@inheritdoc}
51
     */
52 5
    public function shouldBreakChainOnError()
53
    {
54 5
        return true;
55
    }
56
}
57