Passed
Pull Request — master (#8)
by Christopher
02:24
created
src/LdapHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
         $glued_string = '';
91 91
 
92 92
         // Recursively iterates array and adds key/value to glued string
93
-        array_walk_recursive($array, function ($value, $key) use ($glue, $include_keys, &$glued_string) {
93
+        array_walk_recursive($array, function($value, $key) use ($glue, $include_keys, &$glued_string) {
94 94
             $include_keys and $glued_string .= $key.$glue;
95 95
             $glued_string .= $value.$glue;
96 96
         });
Please login to merge, or discard this patch.