From f9473765bc12480112139131381a19e6d60e279f Mon Sep 17 00:00:00 2001 From: Antonio Ospite Date: Fri, 9 Nov 2018 15:25:01 +0100 Subject: [PATCH] src/Tweeper.php: rearrange blank lines to a consistent style In other parts of the file there is no blank line between and the assignment and check for the return value of a function call. Use the same style everywhere. --- src/Tweeper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tweeper.php b/src/Tweeper.php index f34258d..9a449a7 100644 --- a/src/Tweeper.php +++ b/src/Tweeper.php @@ -367,11 +367,11 @@ class Tweeper { } $output = $xsltProcessor->transformToXML($xmlDoc); - if (FALSE === $output) { trigger_error('XSL transformation failed.', E_USER_ERROR); return NULL; } + return $output; } -- 2.1.4