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 ( f79bcb...de7e43 )
by Eric
80:29 queued 77:22
created

IconSequence::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 5
ccs 4
cts 4
cp 1
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 2
crap 1
1
<?php
2
3
/*
4
 * This file is part of the Ivory Google Map package.
5
 *
6
 * (c) Eric GELOEN <[email protected]>
7
 *
8
 * For the full copyright and license information, please read the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Ivory\GoogleMap\Overlay;
13
14
use Ivory\GoogleMap\Utility\OptionsAwareInterface;
15
use Ivory\GoogleMap\Utility\OptionsAwareTrait;
16
use Ivory\GoogleMap\Utility\VariableAwareInterface;
17
use Ivory\GoogleMap\Utility\VariableAwareTrait;
18
19
/**
20
 * @see http://code.google.com/apis/maps/documentation/javascript/reference#IconSequence
21
 *
22
 * @author GeLo <[email protected]>
23
 */
24
class IconSequence implements OptionsAwareInterface, VariableAwareInterface
25
{
26
    use OptionsAwareTrait;
27
    use VariableAwareTrait;
28
29
    /**
30
     * @var Symbol
31
     */
32
    private $symbol;
33
34
    /**
35
     * @param Symbol  $symbol
36
     * @param mixed[] $options
37
     */
38 40
    public function __construct(Symbol $symbol, array $options = [])
39
    {
40 40
        $this->setSymbol($symbol);
41 40
        $this->setOptions($options);
42 40
    }
43
44
    /**
45
     * @return Symbol
46
     */
47 24
    public function getSymbol()
48
    {
49 24
        return $this->symbol;
50
    }
51
52
    /**
53
     * @param Symbol $symbol
54
     */
55 40
    public function setSymbol(Symbol $symbol)
56
    {
57 40
        $this->symbol = $symbol;
58 40
    }
59
}
60