| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | protected function configure() { |
||
| 33 | $this->setName('news:updater:update-feed') |
||
| 34 | ->addArgument( |
||
| 35 | 'feed-id', |
||
| 36 | InputArgument::REQUIRED, |
||
| 37 | 'feed id, integer' |
||
| 38 | ) |
||
| 39 | ->addArgument( |
||
| 40 | 'user-id', |
||
| 41 | InputArgument::REQUIRED, |
||
| 42 | 'user id of a user, string' |
||
| 43 | ) |
||
| 44 | ->setDescription('Console API for updating a single user\'s feed'); |
||
| 45 | } |
||
| 46 | |||
| 60 |