Autologin: Fix PHPDoc

This commit is contained in:
Eric Lippmann 2014-06-11 15:33:33 +02:00
parent 992ccf4f6d
commit 7d2ee41f42
1 changed files with 7 additions and 9 deletions

View File

@ -31,13 +31,11 @@ class AutoLoginBackend extends UserBackend
}
/**
* (PHP 5 &gt;= 5.1.0)<br/>
* Count elements of an object
* @link http://php.net/manual/en/countable.count.php
* @return int The custom count as an integer.
* </p>
* <p>
* The return value is cast to an integer.
* Count the available users
*
* Autologin backends will always return 1
*
* @return int
*/
public function count()
{
@ -73,8 +71,8 @@ class AutoLoginBackend extends UserBackend
/**
* Authenticate
*
* @param User $user
* @param string $password
* @param User $user
* @param string $password
*
* @return bool
*/