for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace flipbox\patron\cp\controllers\view;
class GeneralController extends AbstractViewController
{
/**
* Index
*
* @return string
*/
public function actionIndex()
// Empty variables for template
$variables = [];
// apply base view variables
$this->baseVariables($variables);
return $this->redirect(
$variables['baseCpPath'] . '/providers'
);
}