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\Contracts;
use yii\authclient\ClientInterface;

View File

@ -1,4 +1,5 @@
<?php
namespace Da\User\Contracts;
use yii\rbac\ManagerInterface;
@ -6,22 +7,22 @@ use yii\rbac\ManagerInterface;
interface AuthManagerInterface extends ManagerInterface
{
/**
* @param integer|null $type
* @param array $excludeItems
* @param int|null $type
* @param array $excludeItems
*
* @return mixed
*/
public function getItems($type = null, $excludeItems = []);
/**
* @param integer $userId
* @param int $userId
*
* @return mixed
*/
public function getItemsByUser($userId);
/**
* @param string $name
* @param string $name
*
* @return mixed
*/

View File

@ -1,4 +1,5 @@
<?php
namespace Da\User\Contracts;
interface MailChangeStrategyInterface extends StrategyInterface

View File

@ -1,4 +1,5 @@
<?php
namespace Da\User\Contracts;
interface ServiceInterface

View File

@ -1,4 +1,5 @@
<?php
namespace Da\User\Contracts;
interface StrategyInterface

View File

@ -1,4 +1,5 @@
<?php
namespace Da\User\Contracts;
interface ValidatorInterface