Skip to content
This repository has been archived by the owner on May 29, 2020. It is now read-only.

Commit

Permalink
Fix cs errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ceeram committed Apr 8, 2015
1 parent c659d30 commit 49f08e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Controller/Component/Auth/CookieAuthenticate.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public function getUser(CakeRequest $request) {
*
* @param CakeRequest $request Request object.
* @param CakeResponse $response Response object.
* @return array|boolean Array of user info on success, false on falure.
* @return array|bool Array of user info on success, false on failure.
*/
public function authenticate(CakeRequest $request, CakeResponse $response) {
return $this->getUser($request);
Expand Down
4 changes: 2 additions & 2 deletions Controller/Component/Auth/TokenAuthenticate.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function __construct(ComponentCollection $collection, $settings) {
*
* @param CakeRequest $request The request object.
* @param CakeResponse $response response object.
* @return boolean Always false.
* @return bool Always false.
*/
public function authenticate(CakeRequest $request, CakeResponse $response) {
return false;
Expand All @@ -92,7 +92,7 @@ public function authenticate(CakeRequest $request, CakeResponse $response) {
*
* @param CakeRequest $request The request object.
* @param CakeResponse $response The response object.
* @return boolean False on failure, user on success.
* @return bool False on failure, user on success.
* @throws HttpException or the one specified using $settings['unauthorized']
*/
public function unauthenticated(CakeRequest $request, CakeResponse $response) {
Expand Down

0 comments on commit 49f08e2

Please sign in to comment.