| Total Complexity | 3 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Coverage | 83.33% |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 3 | class IndexController extends Zend_Controller_Action |
||
| 4 | { |
||
| 5 | 1 | public function init(): void |
|
| 7 | // Initialize action controller here |
||
| 8 | 1 | } |
|
| 9 | |||
| 10 | 1 | public function indexAction(): void |
|
| 11 | { |
||
| 12 | 1 | if (\mQueue\Model\User::getCurrent()) { |
|
| 13 | $this->_helper->redirector('index', 'movie'); |
||
| 14 | } else { |
||
| 15 | 1 | $this->_helper->redirector('index', 'activity'); |
|
| 16 | } |
||
| 19 |