| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 10 | public function __construct(int $listId, int $userId, string $screenName) |
||
| 11 | { |
||
| 12 | parent::__construct(); |
||
| 13 | |||
| 14 | $this->parameters['list_id'] = (string) $listId; |
||
| 15 | $this->parameters['user_id'] = (string) $userId; |
||
| 16 | $this->parameters['screen_name'] = (string) $screenName; |
||
| 17 | } |
||
| 18 | } |
||
| 19 |