Browse Source

Fix PHPCS errors.

Mark Story 9 years ago
parent
commit
cb4bfe4e3e
2 changed files with 2 additions and 0 deletions
  1. 1 0
      src/Controller/Component/AuthComponent.php
  2. 1 0
      src/TestSuite/Stub/Response.php

+ 1 - 0
src/Controller/Component/AuthComponent.php

@@ -385,6 +385,7 @@ class AuthComponent extends Component
                 $this->_config['ajaxLogin'],
                 $this->RequestHandler->ajaxLayout
             );
+
             return $response->withStatus(403);
         }
 

+ 1 - 0
src/TestSuite/Stub/Response.php

@@ -32,6 +32,7 @@ class Response extends Base
             $this->statusCode(302);
         }
         $this->_setContentType();
+
         return $this;
     }
 }