fix formatting

This commit is contained in:
Antonio Ramirez
2016-12-14 02:50:12 +01:00
parent f3f4b31bb4
commit 3ba01b4674
140 changed files with 512 additions and 523 deletions

View File

@ -1,4 +1,5 @@
<?php
namespace Da\User\Controller;
use Da\User\Model\Role;
@ -8,7 +9,7 @@ use yii\web\NotFoundHttpException;
class RoleController extends AbstractAuthItemController
{
/**
* @inheritdoc
* {@inheritdoc}
*/
protected function getModelClass()
{
@ -16,7 +17,7 @@ class RoleController extends AbstractAuthItemController
}
/**
* @inheritdoc
* {@inheritdoc}
*/
protected function getSearchModelClass()
{
@ -24,7 +25,7 @@ class RoleController extends AbstractAuthItemController
}
/**
* @inheritdoc
* {@inheritdoc}
*/
protected function getItem($name)
{
@ -36,5 +37,4 @@ class RoleController extends AbstractAuthItemController
throw new NotFoundHttpException();
}
}