Skip to content

Commit

Permalink
Fix CS.
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Jan 6, 2019
1 parent 5662240 commit 6a95d67
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_app/Controller/OffersController.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

use Cake\Controller\Controller;
use Cake\Event\Event;
use Exception;

class OffersController extends Controller {

Expand All @@ -25,7 +26,7 @@ public function index() {
* @throws \Exception
*/
public function denied() {
throw new \Exception('Should not be reached!');
throw new Exception('Should not be reached!');
}

}

0 comments on commit 6a95d67

Please sign in to comment.