Passed
Push — master ( 17eda2...713a7a )
by Caen
03:36
created
packages/framework/src/helpers.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
     use Hyde\Foundation\HydeKernel;
7 7
     use Hyde\Support\Filesystem\MediaFile;
8 8
 
9
-    if (! function_exists('hyde')) {
9
+    if (!function_exists('hyde')) {
10 10
         /**
11 11
          * Get the available HydeKernel instance.
12 12
          */
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     if (defined('HYDE_COMPATIBILITY_MODE') && HYDE_COMPATIBILITY_MODE === true) {
20 20
         // Don't declare these functions when running in compatibility mode.
21 21
     } else {
22
-        if (! function_exists('asset')) {
22
+        if (!function_exists('asset')) {
23 23
             /**
24 24
              * Gets a MediaAsset instance for the given file stored in the `_site/media` folder.
25 25
              * The returned value can be cast into a string in Blade views to resole the URL.
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
             }
36 36
         }
37 37
 
38
-        if (! function_exists('route')) {
38
+        if (!function_exists('route')) {
39 39
             /**
40 40
              * Get a page route instance by its key. Casting it to a string will return a relative link to the page.
41 41
              */
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
             }
46 46
         }
47 47
 
48
-        if (! function_exists('url')) {
48
+        if (!function_exists('url')) {
49 49
             /**
50 50
              * Get a qualified URL to the supplied path if a base URL is set.
51 51
              */
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     use function trim;
71 71
     use function md5;
72 72
 
73
-    if (! function_exists('\Hyde\hyde')) {
73
+    if (!function_exists('\Hyde\hyde')) {
74 74
         /**
75 75
          * Get the available HydeKernel instance.
76 76
          */
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
         }
81 81
     }
82 82
 
83
-    if (! function_exists('\Hyde\unslash')) {
83
+    if (!function_exists('\Hyde\unslash')) {
84 84
         /**
85 85
          * Remove trailing slashes from the start and end of a string.
86 86
          */
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
         }
91 91
     }
92 92
 
93
-    if (! function_exists('\Hyde\unixsum')) {
93
+    if (!function_exists('\Hyde\unixsum')) {
94 94
         /**
95 95
          * A EOL agnostic wrapper for calculating MD5 checksums.
96 96
          *
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
         }
103 103
     }
104 104
 
105
-    if (! function_exists('\Hyde\unixsum_file')) {
105
+    if (!function_exists('\Hyde\unixsum_file')) {
106 106
         /**
107 107
          * Shorthand for {@see unixsum()} but loads a file.
108 108
          */
@@ -112,70 +112,70 @@  discard block
 block discarded – undo
112 112
         }
113 113
     }
114 114
 
115
-    if (! function_exists('\Hyde\make_title')) {
115
+    if (!function_exists('\Hyde\make_title')) {
116 116
         function make_title(string $value): string
117 117
         {
118 118
             return hyde()->makeTitle($value);
119 119
         }
120 120
     }
121 121
 
122
-    if (! function_exists('\Hyde\title')) {
122
+    if (!function_exists('\Hyde\title')) {
123 123
         function title(string $value): string
124 124
         {
125 125
             return hyde()->makeTitle($value);
126 126
         }
127 127
     }
128 128
 
129
-    if (! function_exists('\Hyde\normalize_newlines')) {
129
+    if (!function_exists('\Hyde\normalize_newlines')) {
130 130
         function normalize_newlines(string $string): string
131 131
         {
132 132
             return hyde()->normalizeNewlines($string);
133 133
         }
134 134
     }
135 135
 
136
-    if (! function_exists('\Hyde\strip_newlines')) {
136
+    if (!function_exists('\Hyde\strip_newlines')) {
137 137
         function strip_newlines(string $string): string
138 138
         {
139 139
             return hyde()->stripNewlines($string);
140 140
         }
141 141
     }
142 142
 
143
-    if (! function_exists('\Hyde\trim_slashes')) {
143
+    if (!function_exists('\Hyde\trim_slashes')) {
144 144
         function trim_slashes(string $string): string
145 145
         {
146 146
             return hyde()->trimSlashes($string);
147 147
         }
148 148
     }
149 149
 
150
-    if (! function_exists('\Hyde\evaluate_arrayable')) {
150
+    if (!function_exists('\Hyde\evaluate_arrayable')) {
151 151
         function evaluate_arrayable(array|Arrayable $array): array
152 152
         {
153 153
             return $array instanceof Arrayable ? $array->toArray() : $array;
154 154
         }
155 155
     }
156 156
 
157
-    if (! function_exists('\Hyde\yaml_encode')) {
157
+    if (!function_exists('\Hyde\yaml_encode')) {
158 158
         function yaml_encode(mixed $input, int $inline = 2, int $indent = 4, int $flags = 0): string
159 159
         {
160 160
             return Yaml::dump($input instanceof Arrayable ? $input->toArray() : $input, $inline, $indent, $flags);
161 161
         }
162 162
     }
163 163
 
164
-    if (! function_exists('\Hyde\yaml_decode')) {
164
+    if (!function_exists('\Hyde\yaml_decode')) {
165 165
         function yaml_decode(string $input, int $flags = 0): mixed
166 166
         {
167 167
             return Yaml::parse($input, $flags);
168 168
         }
169 169
     }
170 170
 
171
-    if (! function_exists('\Hyde\path_join')) {
171
+    if (!function_exists('\Hyde\path_join')) {
172 172
         function path_join(string $directory, string ...$paths): string
173 173
         {
174 174
             return implode('/', array_merge([$directory], $paths));
175 175
         }
176 176
     }
177 177
 
178
-    if (! function_exists('\Hyde\normalize_slashes')) {
178
+    if (!function_exists('\Hyde\normalize_slashes')) {
179 179
         function normalize_slashes(string $string): string
180 180
         {
181 181
             return str_replace('\\', '/', $string);
Please login to merge, or discard this patch.