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,13 +1,12 @@
<?php
namespace Da\User\Factory;
use Da\User\Model\Token;
use Yii;
class TokenFactory
{
/**
* @param $userId
*
@ -20,7 +19,6 @@ class TokenFactory
$token->save(false);
return $token;
}
/**
@ -75,5 +73,4 @@ class TokenFactory
{
return Yii::createObject(['class' => Token::class, 'user_id' => $userId, 'type' => $type]);
}
}