From 56a1c68287718cbc0901b9a1064d4fdecfa4b5e8 Mon Sep 17 00:00:00 2001 From: Nicolas Martignoni Date: Fri, 13 Jul 2018 17:26:29 +0200 Subject: [PATCH] Indentation fixed. Issue #32. --- classes/local/utils.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/classes/local/utils.php b/classes/local/utils.php index d36ba83..32e723d 100644 --- a/classes/local/utils.php +++ b/classes/local/utils.php @@ -160,9 +160,9 @@ public static function get_wireless_interface_name() { * @return string converted */ public static function convert_hex_string($string) { - return preg_replace_callback('#\\\\x([[:xdigit:]]{2})#ism', function($matches) { - return chr(hexdec($matches[1])); - }, $string); -} + return preg_replace_callback('#\\\\x([[:xdigit:]]{2})#ism', function($matches) { + return chr(hexdec($matches[1])); + }, $string); + } }