From 6a95d6758c05739bdc223de64b90aa081ddaad51 Mon Sep 17 00:00:00 2001 From: mscherer Date: Sun, 6 Jan 2019 18:07:01 +0100 Subject: [PATCH] Fix CS. --- tests/test_app/Controller/OffersController.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_app/Controller/OffersController.php b/tests/test_app/Controller/OffersController.php index 22bf392d..7226bded 100644 --- a/tests/test_app/Controller/OffersController.php +++ b/tests/test_app/Controller/OffersController.php @@ -3,6 +3,7 @@ use Cake\Controller\Controller; use Cake\Event\Event; +use Exception; class OffersController extends Controller { @@ -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!'); } }