| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | public function onDispatch(MvcEvent $e) |
||
| 32 | { |
||
| 33 | if (!$e->getRequest() instanceof ConsoleRequest) { |
||
| 34 | throw new RuntimeException('You can only use this action from a console!'); |
||
| 35 | } |
||
| 36 | |||
| 37 | $response = sprintf("Current version %s\n", $this->migration->getCurrentVersion()); |
||
| 38 | |||
| 39 | $e->setResult($response); |
||
| 40 | |||
| 41 | return $response; |
||
| 42 | } |
||
| 43 | } |
||
| 44 |