From de5f850cdba2cf1eaf772e33a8f2c3d2262faed3 Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Fri, 6 Apr 2018 20:34:44 +0200 Subject: [PATCH] [index] Fix indentation using tabs --- index.php | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/index.php b/index.php index af1ec7d9..ea21799a 100644 --- a/index.php +++ b/index.php @@ -207,9 +207,9 @@ try { header('Content-Type: text/html'); die(buildBridgeException($e, $bridge)); } catch(Exception $e) { - http_response_code($e->getCode()); - header('Content-Type: text/html'); - die(buildBridgeException($e, $bridge)); + http_response_code($e->getCode()); + header('Content-Type: text/html'); + die(buildBridgeException($e, $bridge)); } // Data transformation @@ -222,12 +222,11 @@ try { http_response_code($e->getCode()); header('Content-Type: text/html'); die(buildTransformException($e, $bridge)); - } catch(Exception $e) { - http_response_code($e->getCode()); - header('Content-Type: text/html'); - die(buildBridgeException($e, $bridge)); - } - + } catch(Exception $e) { + http_response_code($e->getCode()); + header('Content-Type: text/html'); + die(buildBridgeException($e, $bridge)); + } die; }