| Conditions | 3 |
| Paths | 4 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 48 | public function run(array $parameters) |
||
| 49 | { |
||
| 50 | $this->cacheCommand = $parameters['cacheCmd']; |
||
| 51 | |||
| 52 | if (empty($this->cacheCommand)) { |
||
| 53 | $this->cancelDispatch(); |
||
| 54 | } |
||
| 55 | |||
| 56 | if (MathUtility::canBeInterpretedAsInteger($this->cacheCommand)) { |
||
| 57 | $this->pageUid = (int)$this->cacheCommand; |
||
| 58 | $this->cacheCommand = 'page'; |
||
| 59 | } |
||
| 73 |