| 123456789101112131415161718192021 | <?phpnamespace common\modules\rbac\controllers;/** * DefaultController. * * @author Misbahul D Munir <misbahuldmunir@gmail.com> * * @since 1.0 */class DefaultController extends \yii\web\Controller{    /**     * Action index.     */    public function actionIndex()    {        return $this->render('index');    }}
 |