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