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.
Passed
Push — master ( 58175c...546d17 )
by halfpastfour
43s queued 10s
created
src/Chart/Line.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -13,16 +13,16 @@
 block discarded – undo
13 13
  */
14 14
 class Line extends Chart
15 15
 {
16
-    /**
17
-     * The internal type of chart.
18
-     */
19
-    const TYPE = 'line';
16
+	/**
17
+	 * The internal type of chart.
18
+	 */
19
+	const TYPE = 'line';
20 20
 
21
-    /**
22
-     * The list of models that should be used for this chart type.
23
-     */
24
-    const MODEL = [
25
-        'dataset' => LineDataSet::class,
26
-        'options' => LineOptions::class,
27
-    ];
21
+	/**
22
+	 * The list of models that should be used for this chart type.
23
+	 */
24
+	const MODEL = [
25
+		'dataset' => LineDataSet::class,
26
+		'options' => LineOptions::class,
27
+	];
28 28
 }
Please login to merge, or discard this patch.
src/Chart/Doughnut.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,8 +8,8 @@
 block discarded – undo
8 8
  */
9 9
 class Doughnut extends Pie
10 10
 {
11
-    /**
12
-     * The internal type of chart.
13
-     */
14
-    const TYPE = 'doughnut';
11
+	/**
12
+	 * The internal type of chart.
13
+	 */
14
+	const TYPE = 'doughnut';
15 15
 }
Please login to merge, or discard this patch.
src/Chart/Bar.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -15,16 +15,16 @@
 block discarded – undo
15 15
  */
16 16
 class Bar extends Chart
17 17
 {
18
-    /**
19
-     * The internal type of chart.
20
-     */
21
-    const TYPE = 'bar';
18
+	/**
19
+	 * The internal type of chart.
20
+	 */
21
+	const TYPE = 'bar';
22 22
 
23
-    /**
24
-     * The list of models that should be used for this chart type.
25
-     */
26
-    const MODEL = [
27
-        'dataset' => BarDataSet::class,
28
-        'options' => BarOptions::class,
29
-    ];
23
+	/**
24
+	 * The list of models that should be used for this chart type.
25
+	 */
26
+	const MODEL = [
27
+		'dataset' => BarDataSet::class,
28
+		'options' => BarOptions::class,
29
+	];
30 30
 }
Please login to merge, or discard this patch.
src/Chart/Scatter.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -16,16 +16,16 @@
 block discarded – undo
16 16
  */
17 17
 class Scatter extends Chart
18 18
 {
19
-    /**
20
-     * The internal type of chart.
21
-     */
22
-    const TYPE = 'scatter';
19
+	/**
20
+	 * The internal type of chart.
21
+	 */
22
+	const TYPE = 'scatter';
23 23
 
24
-    /**
25
-     * The list of models that should be used for this chart type.
26
-     */
27
-    const MODEL = [
28
-        'dataset' => ScatterDataSet::class,
29
-        'options' => ScatterOptions::class,
30
-    ];
24
+	/**
25
+	 * The list of models that should be used for this chart type.
26
+	 */
27
+	const MODEL = [
28
+		'dataset' => ScatterDataSet::class,
29
+		'options' => ScatterOptions::class,
30
+	];
31 31
 }
Please login to merge, or discard this patch.
src/Chart/HorizontalBar.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,8 +8,8 @@
 block discarded – undo
8 8
  */
9 9
 class HorizontalBar extends Bar
10 10
 {
11
-    /**
12
-     * The internal type of chart.
13
-     */
14
-    const TYPE = 'horizontalBar';
11
+	/**
12
+	 * The internal type of chart.
13
+	 */
14
+	const TYPE = 'horizontalBar';
15 15
 }
Please login to merge, or discard this patch.
src/Chart/Pie.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -16,16 +16,16 @@
 block discarded – undo
16 16
  */
17 17
 class Pie extends Chart implements ChartInterface
18 18
 {
19
-    /**
20
-     * The internal type of chart.
21
-     */
22
-    const TYPE = 'pie';
19
+	/**
20
+	 * The internal type of chart.
21
+	 */
22
+	const TYPE = 'pie';
23 23
 
24
-    /**
25
-     * The list of models that should be used for this chart type.
26
-     */
27
-    const MODEL = [
28
-        'dataset' => PieDataSet::class,
29
-        'options' => PieOptions::class,
30
-    ];
24
+	/**
25
+	 * The list of models that should be used for this chart type.
26
+	 */
27
+	const MODEL = [
28
+		'dataset' => PieDataSet::class,
29
+		'options' => PieOptions::class,
30
+	];
31 31
 }
Please login to merge, or discard this patch.
src/DataSet/BubbleDataSet.php 1 patch
Indentation   +49 added lines, -49 removed lines patch added patch discarded remove patch
@@ -11,53 +11,53 @@
 block discarded – undo
11 11
  */
12 12
 class BubbleDataSet extends DataSet
13 13
 {
14
-    /**
15
-     * @var string
16
-     */
17
-    protected $pointStyle;
18
-
19
-    /**
20
-     * @var int
21
-     */
22
-    protected $radius;
23
-
24
-    /**
25
-     * @return string
26
-     */
27
-    public function getPointStyle()
28
-    {
29
-        return $this->pointStyle;
30
-    }
31
-
32
-    /**
33
-     * @param string $pointStyle
34
-     *
35
-     * @return \Halfpastfour\PHPChartJS\DataSet\BubbleDataSet
36
-     */
37
-    public function setPointStyle($pointStyle)
38
-    {
39
-        $this->pointStyle = $pointStyle;
40
-
41
-        return $this;
42
-    }
43
-
44
-    /**
45
-     * @return int|null
46
-     */
47
-    public function getRadius()
48
-    {
49
-        return $this->radius;
50
-    }
51
-
52
-    /**
53
-     * @param int $radius
54
-     *
55
-     * @return \Halfpastfour\PHPChartJS\DataSet\BubbleDataSet
56
-     */
57
-    public function setRadius($radius)
58
-    {
59
-        $this->radius = $radius;
60
-
61
-        return $this;
62
-    }
14
+	/**
15
+	 * @var string
16
+	 */
17
+	protected $pointStyle;
18
+
19
+	/**
20
+	 * @var int
21
+	 */
22
+	protected $radius;
23
+
24
+	/**
25
+	 * @return string
26
+	 */
27
+	public function getPointStyle()
28
+	{
29
+		return $this->pointStyle;
30
+	}
31
+
32
+	/**
33
+	 * @param string $pointStyle
34
+	 *
35
+	 * @return \Halfpastfour\PHPChartJS\DataSet\BubbleDataSet
36
+	 */
37
+	public function setPointStyle($pointStyle)
38
+	{
39
+		$this->pointStyle = $pointStyle;
40
+
41
+		return $this;
42
+	}
43
+
44
+	/**
45
+	 * @return int|null
46
+	 */
47
+	public function getRadius()
48
+	{
49
+		return $this->radius;
50
+	}
51
+
52
+	/**
53
+	 * @param int $radius
54
+	 *
55
+	 * @return \Halfpastfour\PHPChartJS\DataSet\BubbleDataSet
56
+	 */
57
+	public function setRadius($radius)
58
+	{
59
+		$this->radius = $radius;
60
+
61
+		return $this;
62
+	}
63 63
 }
Please login to merge, or discard this patch.
src/ArraySerializableInterface.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -8,10 +8,10 @@
 block discarded – undo
8 8
  */
9 9
 interface ArraySerializableInterface
10 10
 {
11
-    /**
12
-     * Should return an array containing all values.
13
-     *
14
-     * @return array
15
-     */
16
-    public function getArrayCopy();
11
+	/**
12
+	 * Should return an array containing all values.
13
+	 *
14
+	 * @return array
15
+	 */
16
+	public function getArrayCopy();
17 17
 }
Please login to merge, or discard this patch.
src/Options/Animation/PieAnimation.php 1 patch
Indentation   +49 added lines, -49 removed lines patch added patch discarded remove patch
@@ -10,53 +10,53 @@
 block discarded – undo
10 10
  */
11 11
 class PieAnimation extends Animation
12 12
 {
13
-    /**
14
-     * @var bool
15
-     */
16
-    private $animateRotate;
17
-
18
-    /**
19
-     * @var bool
20
-     */
21
-    private $animateScale;
22
-
23
-    /**
24
-     * @return bool
25
-     */
26
-    public function isAnimateRotate()
27
-    {
28
-        return $this->animateRotate;
29
-    }
30
-
31
-    /**
32
-     * @param bool $animateRotate
33
-     *
34
-     * @return PieAnimation
35
-     */
36
-    public function setAnimateRotate($animateRotate)
37
-    {
38
-        $this->animateRotate = $animateRotate;
39
-
40
-        return $this;
41
-    }
42
-
43
-    /**
44
-     * @return bool
45
-     */
46
-    public function isAnimateScale()
47
-    {
48
-        return $this->animateScale;
49
-    }
50
-
51
-    /**
52
-     * @param bool $animateScale
53
-     *
54
-     * @return PieAnimation
55
-     */
56
-    public function setAnimateScale($animateScale)
57
-    {
58
-        $this->animateScale = $animateScale;
59
-
60
-        return $this;
61
-    }
13
+	/**
14
+	 * @var bool
15
+	 */
16
+	private $animateRotate;
17
+
18
+	/**
19
+	 * @var bool
20
+	 */
21
+	private $animateScale;
22
+
23
+	/**
24
+	 * @return bool
25
+	 */
26
+	public function isAnimateRotate()
27
+	{
28
+		return $this->animateRotate;
29
+	}
30
+
31
+	/**
32
+	 * @param bool $animateRotate
33
+	 *
34
+	 * @return PieAnimation
35
+	 */
36
+	public function setAnimateRotate($animateRotate)
37
+	{
38
+		$this->animateRotate = $animateRotate;
39
+
40
+		return $this;
41
+	}
42
+
43
+	/**
44
+	 * @return bool
45
+	 */
46
+	public function isAnimateScale()
47
+	{
48
+		return $this->animateScale;
49
+	}
50
+
51
+	/**
52
+	 * @param bool $animateScale
53
+	 *
54
+	 * @return PieAnimation
55
+	 */
56
+	public function setAnimateScale($animateScale)
57
+	{
58
+		$this->animateScale = $animateScale;
59
+
60
+		return $this;
61
+	}
62 62
 }
Please login to merge, or discard this patch.