Conditions | 3 |
Paths | 4 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
30 | 2 | public function __construct($parameters) |
|
31 | { |
||
32 | 2 | parent::__construct(self::TYPE_POPULAR_CHANNELS_REQUEST, $parameters); |
|
33 | |||
34 | /* @var \stdClass $parameters */ |
||
35 | 1 | if (isset($parameters->limit)) |
|
36 | 1 | $this->_limit = $parameters->limit; |
|
37 | |||
38 | 1 | if (isset($parameters->userName)) |
|
39 | 1 | $this->_userName = $parameters->userName; |
|
40 | 1 | } |
|
61 |