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