Completed
Push — master ( 1997a7...610627 )
by Igor
02:54
created
models/User.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -470,7 +470,7 @@  discard block
 block discarded – undo
470 470
      * Finds user by password reset token
471 471
      *
472 472
      * @param string $token password reset token
473
-     * @return app\models\User|null
473
+     * @return null|User
474 474
      */
475 475
     public static function findByPasswordResetToken($token)
476 476
     {
@@ -497,7 +497,7 @@  discard block
 block discarded – undo
497 497
      * Finds user by confirm email token
498 498
      *
499 499
      * @param string $token confirm email token
500
-     * @return app\models\User|null
500
+     * @return null|User
501 501
      */
502 502
     public static function findByEmailConfirmToken($token)
503 503
     {
@@ -531,7 +531,7 @@  discard block
 block discarded – undo
531 531
      * Finds user by username
532 532
      *
533 533
      * @param string $username
534
-     * @return app\models\User|null
534
+     * @return User|null
535 535
      */
536 536
     public static function findByUsername($username)
537 537
     {
@@ -542,7 +542,7 @@  discard block
 block discarded – undo
542 542
      * Finds user by email
543 543
      *
544 544
      * @param string $email
545
-     * @return app\models\User|null
545
+     * @return User|null
546 546
      */
547 547
     public static function findByEmail($email)
548 548
     {
Please login to merge, or discard this patch.