From d62598dd45a5dd54a415662ec85144372d0b6914 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Fri, 9 Oct 2015 09:42:10 -0400 Subject: [PATCH] Applied fixes from StyleCI --- app/Http/helpers.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Http/helpers.php b/app/Http/helpers.php index b694c1f8..696f7ae9 100644 --- a/app/Http/helpers.php +++ b/app/Http/helpers.php @@ -106,7 +106,8 @@ if (!function_exists('color_contrast')) { * * @return string */ - function color_contrast($hexcolor) { + function color_contrast($hexcolor) + { $r = hexdec(substr($hexcolor, 0, 2)); $g = hexdec(substr($hexcolor, 2, 2)); $b = hexdec(substr($hexcolor, 4, 2));