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
Pull Request — master (#56)
by halfpastfour
03:05 queued 56s
created

BubbleDataSet::getRadius()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Halfpastfour\PHPChartJS\DataSet;
4
5
use Halfpastfour\PHPChartJS\DataSet;
6
7
/**
8
 * Class BubbleDataSet
9
 *
10
 * @package Halfpastfour\PHPChartJS\DataSet
11
 */
12
class BubbleDataSet extends DataSet
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
    }
63
}
64