@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | |
26 | 26 | use PinkCrab\FunctionConstructors\Arrays as Arr; |
27 | 27 | |
28 | -if (! function_exists('stringContains')) { |
|
28 | +if (!function_exists('stringContains')) { |
|
29 | 29 | /** |
30 | 30 | * Checks if a string contains a sub string |
31 | 31 | * |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | } |
40 | 40 | } |
41 | 41 | |
42 | -if (! function_exists('array_flatten')) { |
|
42 | +if (!function_exists('array_flatten')) { |
|
43 | 43 | /** |
44 | 44 | * Flattens an array to desired depth. |
45 | 45 | * doesn't preserve keys |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | } |
55 | 55 | } |
56 | 56 | |
57 | -if (! function_exists('toObject')) { |
|
57 | +if (!function_exists('toObject')) { |
|
58 | 58 | /** |
59 | 59 | * Simple mapper for turning arrays into stdClass objects. |
60 | 60 | * |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | } |
68 | 68 | } |
69 | 69 | |
70 | -if (! function_exists('invokeCallable')) { |
|
70 | +if (!function_exists('invokeCallable')) { |
|
71 | 71 | /** |
72 | 72 | * Used to invoke a callable. |
73 | 73 | * |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | } |
82 | 82 | } |
83 | 83 | |
84 | -if (! function_exists('isArrayAccess')) { |
|
84 | +if (!function_exists('isArrayAccess')) { |
|
85 | 85 | /** |
86 | 86 | * Checks if an array or an object which has array like access. |
87 | 87 | * |