From 97afd6a6915d9dffb91dc6e04feb2adade900c9e Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 18 Jul 2017 21:32:20 +0200 Subject: [PATCH] Fix line ending bug --- Math/Functions/Functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Math/Functions/Functions.php b/Math/Functions/Functions.php index c8332f253..9de4215b6 100644 --- a/Math/Functions/Functions.php +++ b/Math/Functions/Functions.php @@ -254,7 +254,7 @@ class Functions */ public static function isEven($a) : bool { - return !($a & 1) + return !($a & 1); } /**