From ab915cd0dd75eaa9bb1a364b7119083473dd1217 Mon Sep 17 00:00:00 2001 From: Andrew Feeney Date: Mon, 4 Sep 2017 09:27:06 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/Arc/Application.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Arc/Application.php b/src/Arc/Application.php index 96f4050..c1f16c4 100644 --- a/src/Arc/Application.php +++ b/src/Arc/Application.php @@ -1028,6 +1028,7 @@ public function abort($code, $message = '', array $headers = []) if ($code == 404) { throw new NotFoundHttpException($message); } + throw new HttpException($code, $message, null, $headers); }