Passed
Push — main ( 57b38b...aec17e )
by Dimitri
04:13
created
src/Router/AutoRouter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
             $class = $this->translateURIDashes(ucfirst($segment));
134 134
 
135 135
             // dès que nous rencontrons un segment qui n'est pas compatible PSR-4, arrêter la recherche
136
-            if (! $this->isValidSegment($class)) {
136
+            if (!$this->isValidSegment($class)) {
137 137
                 return false;
138 138
             }
139 139
 
@@ -341,7 +341,7 @@  discard block
 block discarded – undo
341 341
             throw new MethodNotFoundException();
342 342
         }
343 343
 
344
-        if (! $refMethod->isPublic()) {
344
+        if (!$refMethod->isPublic()) {
345 345
             throw new MethodNotFoundException();
346 346
         }
347 347
 
@@ -454,7 +454,7 @@  discard block
 block discarded – undo
454 454
      */
455 455
     public function directory(): string
456 456
     {
457
-        return ! empty($this->directory) ? $this->directory : '';
457
+        return !empty($this->directory) ? $this->directory : '';
458 458
     }
459 459
 
460 460
     /**
Please login to merge, or discard this patch.
src/Http/Concerns/InteractsWithInput.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
         $input = $this->all();
88 88
 
89 89
         foreach ($keys as $value) {
90
-            if (! Arr::has($input, $value)) {
90
+            if (!Arr::has($input, $value)) {
91 91
                 return false;
92 92
             }
93 93
         }
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
         $keys = is_array($key) ? $key : func_get_args();
150 150
 
151 151
         foreach ($keys as $value) {
152
-            if (! $this->isEmptyString($value)) {
152
+            if (!$this->isEmptyString($value)) {
153 153
                 return false;
154 154
             }
155 155
         }
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
     {
199 199
         $keys = is_array($key) ? $key : func_get_args();
200 200
 
201
-        return ! $this->has($keys);
201
+        return !$this->has($keys);
202 202
     }
203 203
 
204 204
     /**
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
     {
227 227
         $value = $this->data($key);
228 228
 
229
-        return ! is_bool($value) && ! is_array($value) && trim((string) $value) === '';
229
+        return !is_bool($value) && !is_array($value) && trim((string) $value) === '';
230 230
     }
231 231
 
232 232
     /**
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
     {
247 247
         $input = array_replace_recursive($this->data(), $this->allFiles());
248 248
 
249
-        if (! $keys) {
249
+        if (!$keys) {
250 250
             return $input;
251 251
         }
252 252
 
@@ -341,9 +341,9 @@  discard block
 block discarded – undo
341 341
     public function enum(string $key, $enumClass)
342 342
     {
343 343
         if ($this->isNotFilled($key)
344
-            || ! function_exists('enum_exists')
345
-            || ! enum_exists($enumClass)
346
-            || ! method_exists($enumClass, 'tryFrom')) {
344
+            || !function_exists('enum_exists')
345
+            || !enum_exists($enumClass)
346
+            || !method_exists($enumClass, 'tryFrom')) {
347 347
             return null;
348 348
         }
349 349
 
@@ -457,7 +457,7 @@  discard block
 block discarded – undo
457 457
      */
458 458
     public function hasFile(string $key): bool
459 459
     {
460
-        if (! is_array($files = $this->file($key))) {
460
+        if (!is_array($files = $this->file($key))) {
461 461
             $files = [$files];
462 462
         }
463 463
 
Please login to merge, or discard this patch.
src/Http/Request.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     public function validation(array|string $rules, array $messages = []): Validation
57 57
     {
58 58
         if (is_string($rules)) {
59
-            if (! class_exists($rules) || ! is_subclass_of($rules, DataValidation::class)) {
59
+            if (!class_exists($rules) || !is_subclass_of($rules, DataValidation::class)) {
60 60
                 throw new InvalidArgumentException();
61 61
             }
62 62
 
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
      */
142 142
     public function fullUrl(): string
143 143
     {
144
-        if (! empty($query = $this->getEnv('QUERY_STRING'))) {
144
+        if (!empty($query = $this->getEnv('QUERY_STRING'))) {
145 145
             return $this->url() . '?' . $query;
146 146
         }
147 147
 
Please login to merge, or discard this patch.
src/Http/ServerRequest.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
         $this->cookies = $config['cookies'];
235 235
 
236 236
         if (isset($config['uri'])) {
237
-            if (! $config['uri'] instanceof UriInterface) {
237
+            if (!$config['uri'] instanceof UriInterface) {
238 238
                 throw new FrameworkException('The `uri` key must be an instance of ' . UriInterface::class);
239 239
             }
240 240
             $uri = $config['uri'];
@@ -437,7 +437,7 @@  discard block
 block discarded – undo
437 437
         }
438 438
 
439 439
         $type = strtolower($type);
440
-        if (! isset(static::$_detectors[$type])) {
440
+        if (!isset(static::$_detectors[$type])) {
441 441
             return false;
442 442
         }
443 443
         if ($args) {
@@ -589,7 +589,7 @@  discard block
 block discarded – undo
589 589
     public function isAll(array $types): bool
590 590
     {
591 591
         foreach ($types as $type) {
592
-            if (! $this->is($type)) {
592
+            if (!$this->is($type)) {
593 593
                 return false;
594 594
             }
595 595
         }
@@ -693,7 +693,7 @@  discard block
 block discarded – undo
693 693
     protected function normalizeHeaderName(string $name): string
694 694
     {
695 695
         $name = str_replace('-', '_', strtoupper($name));
696
-        if (! in_array($name, ['CONTENT_LENGTH', 'CONTENT_TYPE'], true)) {
696
+        if (!in_array($name, ['CONTENT_LENGTH', 'CONTENT_TYPE'], true)) {
697 697
             $name = 'HTTP_' . $name;
698 698
         }
699 699
 
@@ -871,7 +871,7 @@  discard block
 block discarded – undo
871 871
     {
872 872
         $new = clone $this;
873 873
 
874
-        if (! preg_match('/^[!#$%&\'*+.^_`\|~0-9a-z-]+$/i', $method)) {
874
+        if (!preg_match('/^[!#$%&\'*+.^_`\|~0-9a-z-]+$/i', $method)) {
875 875
             throw new InvalidArgumentException(sprintf(
876 876
                 'Méthode HTTP non prise en charge "%s" fournie',
877 877
                 $method
@@ -1133,7 +1133,7 @@  discard block
 block discarded – undo
1133 1133
                 }
1134 1134
             }
1135 1135
 
1136
-            if (! isset($accept[$prefValue])) {
1136
+            if (!isset($accept[$prefValue])) {
1137 1137
                 $accept[$prefValue] = [];
1138 1138
             }
1139 1139
             if ($prefValue) {
@@ -1211,7 +1211,7 @@  discard block
 block discarded – undo
1211 1211
         if ($name === null) {
1212 1212
             return $this->data;
1213 1213
         }
1214
-        if (! is_array($this->data)) {
1214
+        if (!is_array($this->data)) {
1215 1215
             return $default;
1216 1216
         }
1217 1217
 
@@ -1351,7 +1351,7 @@  discard block
 block discarded – undo
1351 1351
      */
1352 1352
     public function withProtocolVersion(string $version): static
1353 1353
     {
1354
-        if (! preg_match('/^(1\.[01]|2(\.[0])?)$/', $version)) {
1354
+        if (!preg_match('/^(1\.[01]|2(\.[0])?)$/', $version)) {
1355 1355
             throw new InvalidArgumentException(sprintf('Version de protocole `%s` non prise en charge fournie.', $version));
1356 1356
         }
1357 1357
         $new           = clone $this;
@@ -1373,7 +1373,7 @@  discard block
 block discarded – undo
1373 1373
     public function getEnv(string $key, ?string $default = null): ?string
1374 1374
     {
1375 1375
         $key = strtoupper($key);
1376
-        if (! array_key_exists($key, $this->_environment) || null === $this->_environment[$key]) {
1376
+        if (!array_key_exists($key, $this->_environment) || null === $this->_environment[$key]) {
1377 1377
             $this->_environment[$key] = env($key, $default);
1378 1378
         }
1379 1379
 
@@ -1590,7 +1590,7 @@  discard block
 block discarded – undo
1590 1590
         $file = Arr::get($this->uploadedFiles, $path);
1591 1591
         if (is_array($file)) {
1592 1592
             foreach ($file as $f) {
1593
-                if (! ($f instanceof UploadedFile)) {
1593
+                if (!($f instanceof UploadedFile)) {
1594 1594
                     return null;
1595 1595
                 }
1596 1596
             }
@@ -1598,7 +1598,7 @@  discard block
 block discarded – undo
1598 1598
             return $file;
1599 1599
         }
1600 1600
 
1601
-        if (! ($file instanceof UploadedFileInterface)) {
1601
+        if (!($file instanceof UploadedFileInterface)) {
1602 1602
             return null;
1603 1603
         }
1604 1604
 
@@ -1646,7 +1646,7 @@  discard block
 block discarded – undo
1646 1646
                 continue;
1647 1647
             }
1648 1648
 
1649
-            if (! $file instanceof UploadedFileInterface) {
1649
+            if (!$file instanceof UploadedFileInterface) {
1650 1650
                 throw new InvalidArgumentException("Fichier invalide à '{$path}{$key}'");
1651 1651
             }
1652 1652
         }
@@ -1697,7 +1697,7 @@  discard block
 block discarded – undo
1697 1697
         }
1698 1698
 
1699 1699
         $host = $uri->getHost();
1700
-        if (! $host) {
1700
+        if (!$host) {
1701 1701
             return $new;
1702 1702
         }
1703 1703
         $port = $uri->getPort();
@@ -1805,7 +1805,7 @@  discard block
 block discarded – undo
1805 1805
         $validLocales = config('app.supported_locales');
1806 1806
         // S'il ne s'agit pas d'un paramètre régional valide, définissez-le
1807 1807
         // aux paramètres régionaux par défaut du site.
1808
-        if (! in_array($locale, $validLocales, true)) {
1808
+        if (!in_array($locale, $validLocales, true)) {
1809 1809
             $locale = config('app.language');
1810 1810
         }
1811 1811
 
@@ -1905,7 +1905,7 @@  discard block
 block discarded – undo
1905 1905
             $override = true;
1906 1906
         }
1907 1907
 
1908
-        if ($override && ! in_array($this->_environment['REQUEST_METHOD'], ['PUT', 'POST', 'DELETE', 'PATCH'], true)) {
1908
+        if ($override && !in_array($this->_environment['REQUEST_METHOD'], ['PUT', 'POST', 'DELETE', 'PATCH'], true)) {
1909 1909
             $data = [];
1910 1910
         }
1911 1911
 
@@ -1955,7 +1955,7 @@  discard block
 block discarded – undo
1955 1955
      */
1956 1956
     protected function _processFiles(array $post, array $files): array
1957 1957
     {
1958
-        if (! is_array($files)) {
1958
+        if (!is_array($files)) {
1959 1959
             return $post;
1960 1960
         }
1961 1961
 
Please login to merge, or discard this patch.
src/View/Adapters/SmartyAdapter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
         $this->renderVars['file'] = $this->getRenderedFile($options, $this->renderVars['view'], 'tpl');
62 62
 
63 63
         $layout = $this->layout;
64
-        if (! empty($layout)) {
64
+        if (!empty($layout)) {
65 65
             if (empty(pathinfo($layout, PATHINFO_EXTENSION))) {
66 66
                 $layout .= '.tpl';
67 67
             }
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         $this->engine->assign($this->data);
72 72
 
73 73
         // Doit-on mettre en cache?
74
-        if (! empty($this->renderVars['options']['cache_name']) || ! empty($this->renderVars['options']['cache'])) {
74
+        if (!empty($this->renderVars['options']['cache_name']) || !empty($this->renderVars['options']['cache'])) {
75 75
             $this->enableCache();
76 76
             $this->engine->setCacheLifetime(60 * ($this->renderVars['options']['cache'] ?? 60));
77 77
             $this->engine->setCompileId($this->renderVars['options']['cache_name'] ?? null);
Please login to merge, or discard this patch.
src/Helpers/inflector.php 1 patch
Spacing   +39 added lines, -39 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 use BlitzPHP\Utilities\String\Inflector;
13 13
 use BlitzPHP\Utilities\String\Text;
14 14
 
15
-if (! function_exists('camelize')) {
15
+if (!function_exists('camelize')) {
16 16
     /**
17 17
      * Camelize
18 18
      *
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     }
27 27
 }
28 28
 
29
-if (! function_exists('classify')) {
29
+if (!function_exists('classify')) {
30 30
     /**
31 31
      * Returns model class name ("Person" for the database table "people".) for given database table.
32 32
      *
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     }
41 41
 }
42 42
 
43
-if (! function_exists('dasherize')) {
43
+if (!function_exists('dasherize')) {
44 44
     /**
45 45
      * Returns the input CamelCasedString as an dashed-string.
46 46
      *
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     }
57 57
 }
58 58
 
59
-if (! function_exists('delimit')) {
59
+if (!function_exists('delimit')) {
60 60
     /**
61 61
      * Expects a CamelCasedInputString, and produces a lower_case_delimited_string
62 62
      *
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     }
72 72
 }
73 73
 
74
-if (! function_exists('humanize')) {
74
+if (!function_exists('humanize')) {
75 75
     /**
76 76
      * Humanize
77 77
      *
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     }
87 87
 }
88 88
 
89
-if (! function_exists('plural')) {
89
+if (!function_exists('plural')) {
90 90
     /**
91 91
      * Plural
92 92
      *
@@ -96,30 +96,30 @@  discard block
 block discarded – undo
96 96
     {
97 97
         $result = $string;
98 98
 
99
-        if (! is_pluralizable($result)) {
99
+        if (!is_pluralizable($result)) {
100 100
             return $result;
101 101
         }
102 102
 
103 103
         $plural_rules = [
104
-            '/(quiz)$/'               => '\1zes',      // quizzes
105
-            '/^(ox)$/'                => '\1\2en',     // ox
106
-            '/([m|l])ouse$/'          => '\1ice',      // mouse, louse
107
-            '/(matr|vert|ind)ix|ex$/' => '\1ices',     // matrix, vertex, index
108
-            '/(x|ch|ss|sh)$/'         => '\1es',       // search, switch, fix, box, process, address
109
-            '/([^aeiouy]|qu)y$/'      => '\1ies',      // query, ability, agency
110
-            '/(hive)$/'               => '\1s',        // archive, hive
111
-            '/(?:([^f])fe|([lr])f)$/' => '\1\2ves',    // half, safe, wife
112
-            '/sis$/'                  => 'ses',        // basis, diagnosis
113
-            '/([ti])um$/'             => '\1a',        // datum, medium
114
-            '/(p)erson$/'             => '\1eople',    // person, salesperson
115
-            '/(m)an$/'                => '\1en',       // man, woman, spokesman
116
-            '/(c)hild$/'              => '\1hildren',  // child
117
-            '/(buffal|tomat)o$/'      => '\1\2oes',    // buffalo, tomato
118
-            '/(bu|campu)s$/'          => '\1\2ses',    // bus, campus
119
-            '/(alias|status|virus)$/' => '\1es',       // alias
120
-            '/(octop)us$/'            => '\1i',        // octopus
121
-            '/(ax|cris|test)is$/'     => '\1es',       // axis, crisis
122
-            '/s$/'                    => 's',          // no change (compatibility)
104
+            '/(quiz)$/'               => '\1zes', // quizzes
105
+            '/^(ox)$/'                => '\1\2en', // ox
106
+            '/([m|l])ouse$/'          => '\1ice', // mouse, louse
107
+            '/(matr|vert|ind)ix|ex$/' => '\1ices', // matrix, vertex, index
108
+            '/(x|ch|ss|sh)$/'         => '\1es', // search, switch, fix, box, process, address
109
+            '/([^aeiouy]|qu)y$/'      => '\1ies', // query, ability, agency
110
+            '/(hive)$/'               => '\1s', // archive, hive
111
+            '/(?:([^f])fe|([lr])f)$/' => '\1\2ves', // half, safe, wife
112
+            '/sis$/'                  => 'ses', // basis, diagnosis
113
+            '/([ti])um$/'             => '\1a', // datum, medium
114
+            '/(p)erson$/'             => '\1eople', // person, salesperson
115
+            '/(m)an$/'                => '\1en', // man, woman, spokesman
116
+            '/(c)hild$/'              => '\1hildren', // child
117
+            '/(buffal|tomat)o$/'      => '\1\2oes', // buffalo, tomato
118
+            '/(bu|campu)s$/'          => '\1\2ses', // bus, campus
119
+            '/(alias|status|virus)$/' => '\1es', // alias
120
+            '/(octop)us$/'            => '\1i', // octopus
121
+            '/(ax|cris|test)is$/'     => '\1es', // axis, crisis
122
+            '/s$/'                    => 's', // no change (compatibility)
123 123
             '/$/'                     => 's',
124 124
         ];
125 125
 
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
     }
135 135
 }
136 136
 
137
-if (! function_exists('pluralize')) {
137
+if (!function_exists('pluralize')) {
138 138
     /**
139 139
      * Return $word in plural form.
140 140
      *
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
     }
149 149
 }
150 150
 
151
-if (! function_exists('singular')) {
151
+if (!function_exists('singular')) {
152 152
     /**
153 153
      * Singular
154 154
      *
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
     {
159 159
         $result = $string;
160 160
 
161
-        if (! is_pluralizable($result)) {
161
+        if (!is_pluralizable($result)) {
162 162
             return $result;
163 163
         }
164 164
 
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
     }
205 205
 }
206 206
 
207
-if (! function_exists('singularize')) {
207
+if (!function_exists('singularize')) {
208 208
     /**
209 209
      * Return $word in singular form.
210 210
      *
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
     }
219 219
 }
220 220
 
221
-if (! function_exists('tableize')) {
221
+if (!function_exists('tableize')) {
222 222
     /**
223 223
      * Returns corresponding table name for given model $className. ("people" for the model class "Person").
224 224
      *
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
     }
233 233
 }
234 234
 
235
-if (! function_exists('underscore')) {
235
+if (!function_exists('underscore')) {
236 236
     /**
237 237
      * Underscore
238 238
      *
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
     }
247 247
 }
248 248
 
249
-if (! function_exists('variable')) {
249
+if (!function_exists('variable')) {
250 250
     /**
251 251
      * Returns camelBacked version of an underscored string.
252 252
      *
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
     }
261 261
 }
262 262
 
263
-if (! function_exists('counted')) {
263
+if (!function_exists('counted')) {
264 264
     /**
265 265
      * Counted
266 266
      *
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
     }
279 279
 }
280 280
 
281
-if (! function_exists('pascalize')) {
281
+if (!function_exists('pascalize')) {
282 282
     /**
283 283
      * Pascalize
284 284
      *
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
     }
295 295
 }
296 296
 
297
-if (! function_exists('is_pluralizable')) {
297
+if (!function_exists('is_pluralizable')) {
298 298
     /**
299 299
      * Checks if the given word has a plural version.
300 300
      *
@@ -302,7 +302,7 @@  discard block
 block discarded – undo
302 302
      */
303 303
     function is_pluralizable(string $word): bool
304 304
     {
305
-        return ! in_array(
305
+        return !in_array(
306 306
             strtolower($word),
307 307
             [
308 308
                 'advice',
@@ -377,7 +377,7 @@  discard block
 block discarded – undo
377 377
     }
378 378
 }
379 379
 
380
-if (! function_exists('ordinal')) {
380
+if (!function_exists('ordinal')) {
381 381
     /**
382 382
      * Returns the suffix that should be added to a
383 383
      * number to denote the position in an ordered
@@ -404,7 +404,7 @@  discard block
 block discarded – undo
404 404
     }
405 405
 }
406 406
 
407
-if (! function_exists('ordinalize')) {
407
+if (!function_exists('ordinalize')) {
408 408
     /**
409 409
      * Turns a number into an ordinal string used
410 410
      * to denote the position in an ordered sequence
Please login to merge, or discard this patch.
phpstan-baseline.php 1 patch
Indentation   +507 added lines, -507 removed lines patch added patch discarded remove patch
@@ -2,849 +2,849 @@
 block discarded – undo
2 2
 
3 3
 $ignoreErrors = [];
4 4
 $ignoreErrors[] = [
5
-	'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:errorBold\\(\\)\\.$#',
6
-	'count' => 1,
7
-	'path' => __DIR__ . '/src/Cli/Console/Command.php',
5
+    'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:errorBold\\(\\)\\.$#',
6
+    'count' => 1,
7
+    'path' => __DIR__ . '/src/Cli/Console/Command.php',
8 8
 ];
9 9
 $ignoreErrors[] = [
10
-	'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:infoBold\\(\\)\\.$#',
11
-	'count' => 1,
12
-	'path' => __DIR__ . '/src/Cli/Console/Command.php',
10
+    'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:infoBold\\(\\)\\.$#',
11
+    'count' => 1,
12
+    'path' => __DIR__ . '/src/Cli/Console/Command.php',
13 13
 ];
14 14
 $ignoreErrors[] = [
15
-	'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:okBold\\(\\)\\.$#',
16
-	'count' => 1,
17
-	'path' => __DIR__ . '/src/Cli/Console/Command.php',
15
+    'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:okBold\\(\\)\\.$#',
16
+    'count' => 1,
17
+    'path' => __DIR__ . '/src/Cli/Console/Command.php',
18 18
 ];
19 19
 $ignoreErrors[] = [
20
-	'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:warnBold\\(\\)\\.$#',
21
-	'count' => 1,
22
-	'path' => __DIR__ . '/src/Cli/Console/Command.php',
20
+    'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:warnBold\\(\\)\\.$#',
21
+    'count' => 1,
22
+    'path' => __DIR__ . '/src/Cli/Console/Command.php',
23 23
 ];
24 24
 $ignoreErrors[] = [
25
-	'message' => '#^Access to an undefined property Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:\\$bold\\.$#',
26
-	'count' => 1,
27
-	'path' => __DIR__ . '/src/Cli/Console/Console.php',
25
+    'message' => '#^Access to an undefined property Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:\\$bold\\.$#',
26
+    'count' => 1,
27
+    'path' => __DIR__ . '/src/Cli/Console/Console.php',
28 28
 ];
29 29
 $ignoreErrors[] = [
30
-	'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Application\\|Ahc\\\\Cli\\\\IO\\\\Interactor\\:\\:write\\(\\)\\.$#',
31
-	'count' => 2,
32
-	'path' => __DIR__ . '/src/Cli/Console/Console.php',
30
+    'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Application\\|Ahc\\\\Cli\\\\IO\\\\Interactor\\:\\:write\\(\\)\\.$#',
31
+    'count' => 2,
32
+    'path' => __DIR__ . '/src/Cli/Console/Console.php',
33 33
 ];
34 34
 $ignoreErrors[] = [
35
-	'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\IO\\\\Interactor\\:\\:write\\(\\)\\.$#',
36
-	'count' => 1,
37
-	'path' => __DIR__ . '/src/Cli/Console/Console.php',
35
+    'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\IO\\\\Interactor\\:\\:write\\(\\)\\.$#',
36
+    'count' => 1,
37
+    'path' => __DIR__ . '/src/Cli/Console/Console.php',
38 38
 ];
39 39
 $ignoreErrors[] = [
40
-	'message' => '#^Call to an undefined static method Nette\\\\Schema\\\\Expect\\:\\:closure\\(\\)\\.$#',
41
-	'count' => 1,
42
-	'path' => __DIR__ . '/src/Constants/schemas/middlewares.config.php',
40
+    'message' => '#^Call to an undefined static method Nette\\\\Schema\\\\Expect\\:\\:closure\\(\\)\\.$#',
41
+    'count' => 1,
42
+    'path' => __DIR__ . '/src/Constants/schemas/middlewares.config.php',
43 43
 ];
44 44
 $ignoreErrors[] = [
45
-	'message' => '#^Access to an undefined property mindplay\\\\annotations\\\\IAnnotation\\:\\:\\$method\\.$#',
46
-	'count' => 1,
47
-	'path' => __DIR__ . '/src/Controllers/RestController.php',
45
+    'message' => '#^Access to an undefined property mindplay\\\\annotations\\\\IAnnotation\\:\\:\\$method\\.$#',
46
+    'count' => 1,
47
+    'path' => __DIR__ . '/src/Controllers/RestController.php',
48 48
 ];
49 49
 $ignoreErrors[] = [
50
-	'message' => '#^Call to static method make\\(\\) on an unknown class Spatie\\\\Ignition\\\\Ignition\\.$#',
51
-	'count' => 1,
52
-	'path' => __DIR__ . '/src/Debug/Debugger.php',
50
+    'message' => '#^Call to static method make\\(\\) on an unknown class Spatie\\\\Ignition\\\\Ignition\\.$#',
51
+    'count' => 1,
52
+    'path' => __DIR__ . '/src/Debug/Debugger.php',
53 53
 ];
54 54
 $ignoreErrors[] = [
55
-	'message' => '#^Negated boolean expression is always false\\.$#',
56
-	'count' => 1,
57
-	'path' => __DIR__ . '/src/Debug/Toolbar.php',
55
+    'message' => '#^Negated boolean expression is always false\\.$#',
56
+    'count' => 1,
57
+    'path' => __DIR__ . '/src/Debug/Toolbar.php',
58 58
 ];
59 59
 $ignoreErrors[] = [
60
-	'message' => '#^PHPDoc tag @method has invalid value \\(static void         configure\\(callable \\$callback\\(RouteBuilder \\$route\\)\\)                         Configure les parametres de routing\\.\\)\\: Unexpected token "\\(", expected \'\\)\' at offset 63$#',
61
-	'count' => 1,
62
-	'path' => __DIR__ . '/src/Facades/Route.php',
60
+    'message' => '#^PHPDoc tag @method has invalid value \\(static void         configure\\(callable \\$callback\\(RouteBuilder \\$route\\)\\)                         Configure les parametres de routing\\.\\)\\: Unexpected token "\\(", expected \'\\)\' at offset 63$#',
61
+    'count' => 1,
62
+    'path' => __DIR__ . '/src/Facades/Route.php',
63 63
 ];
64 64
 $ignoreErrors[] = [
65
-	'message' => '#^Function img\\(\\) never returns void so it can be removed from the return type\\.$#',
66
-	'count' => 1,
67
-	'path' => __DIR__ . '/src/Helpers/assets.php',
65
+    'message' => '#^Function img\\(\\) never returns void so it can be removed from the return type\\.$#',
66
+    'count' => 1,
67
+    'path' => __DIR__ . '/src/Helpers/assets.php',
68 68
 ];
69 69
 $ignoreErrors[] = [
70
-	'message' => '#^Function less_styles\\(\\) never returns void so it can be removed from the return type\\.$#',
71
-	'count' => 1,
72
-	'path' => __DIR__ . '/src/Helpers/assets.php',
70
+    'message' => '#^Function less_styles\\(\\) never returns void so it can be removed from the return type\\.$#',
71
+    'count' => 1,
72
+    'path' => __DIR__ . '/src/Helpers/assets.php',
73 73
 ];
74 74
 $ignoreErrors[] = [
75
-	'message' => '#^Function lib_scripts\\(\\) never returns void so it can be removed from the return type\\.$#',
76
-	'count' => 1,
77
-	'path' => __DIR__ . '/src/Helpers/assets.php',
75
+    'message' => '#^Function lib_scripts\\(\\) never returns void so it can be removed from the return type\\.$#',
76
+    'count' => 1,
77
+    'path' => __DIR__ . '/src/Helpers/assets.php',
78 78
 ];
79 79
 $ignoreErrors[] = [
80
-	'message' => '#^Function lib_styles\\(\\) never returns void so it can be removed from the return type\\.$#',
81
-	'count' => 1,
82
-	'path' => __DIR__ . '/src/Helpers/assets.php',
80
+    'message' => '#^Function lib_styles\\(\\) never returns void so it can be removed from the return type\\.$#',
81
+    'count' => 1,
82
+    'path' => __DIR__ . '/src/Helpers/assets.php',
83 83
 ];
84 84
 $ignoreErrors[] = [
85
-	'message' => '#^Function scripts\\(\\) never returns void so it can be removed from the return type\\.$#',
86
-	'count' => 1,
87
-	'path' => __DIR__ . '/src/Helpers/assets.php',
85
+    'message' => '#^Function scripts\\(\\) never returns void so it can be removed from the return type\\.$#',
86
+    'count' => 1,
87
+    'path' => __DIR__ . '/src/Helpers/assets.php',
88 88
 ];
89 89
 $ignoreErrors[] = [
90
-	'message' => '#^Function styles\\(\\) never returns void so it can be removed from the return type\\.$#',
91
-	'count' => 1,
92
-	'path' => __DIR__ . '/src/Helpers/assets.php',
90
+    'message' => '#^Function styles\\(\\) never returns void so it can be removed from the return type\\.$#',
91
+    'count' => 1,
92
+    'path' => __DIR__ . '/src/Helpers/assets.php',
93 93
 ];
94 94
 $ignoreErrors[] = [
95
-	'message' => '#^Negated boolean expression is always false\\.$#',
96
-	'count' => 1,
97
-	'path' => __DIR__ . '/src/Helpers/assets.php',
95
+    'message' => '#^Negated boolean expression is always false\\.$#',
96
+    'count' => 1,
97
+    'path' => __DIR__ . '/src/Helpers/assets.php',
98 98
 ];
99 99
 $ignoreErrors[] = [
100
-	'message' => '#^Function logger\\(\\) never returns void so it can be removed from the return type\\.$#',
101
-	'count' => 1,
102
-	'path' => __DIR__ . '/src/Helpers/common.php',
100
+    'message' => '#^Function logger\\(\\) never returns void so it can be removed from the return type\\.$#',
101
+    'count' => 1,
102
+    'path' => __DIR__ . '/src/Helpers/common.php',
103 103
 ];
104 104
 $ignoreErrors[] = [
105
-	'message' => '#^Call to an undefined method BlitzPHP\\\\Http\\\\Request\\:\\:getFormat\\(\\)\\.$#',
106
-	'count' => 1,
107
-	'path' => __DIR__ . '/src/Http/Request.php',
105
+    'message' => '#^Call to an undefined method BlitzPHP\\\\Http\\\\Request\\:\\:getFormat\\(\\)\\.$#',
106
+    'count' => 1,
107
+    'path' => __DIR__ . '/src/Http/Request.php',
108 108
 ];
109 109
 $ignoreErrors[] = [
110
-	'message' => '#^Call to an undefined method BlitzPHP\\\\Http\\\\Request\\:\\:getMimeType\\(\\)\\.$#',
111
-	'count' => 1,
112
-	'path' => __DIR__ . '/src/Http/Request.php',
110
+    'message' => '#^Call to an undefined method BlitzPHP\\\\Http\\\\Request\\:\\:getMimeType\\(\\)\\.$#',
111
+    'count' => 1,
112
+    'path' => __DIR__ . '/src/Http/Request.php',
113 113
 ];
114 114
 $ignoreErrors[] = [
115
-	'message' => '#^Call to an undefined method BlitzPHP\\\\Session\\\\Store\\:\\:flashInput\\(\\)\\.$#',
116
-	'count' => 4,
117
-	'path' => __DIR__ . '/src/Http/Request.php',
115
+    'message' => '#^Call to an undefined method BlitzPHP\\\\Session\\\\Store\\:\\:flashInput\\(\\)\\.$#',
116
+    'count' => 4,
117
+    'path' => __DIR__ . '/src/Http/Request.php',
118 118
 ];
119 119
 $ignoreErrors[] = [
120
-	'message' => '#^Method BlitzPHP\\\\Http\\\\Request\\:\\:validation\\(\\) should return BlitzPHP\\\\Validation\\\\Validation but returns Dimtrovich\\\\Validation\\\\Validation\\.$#',
121
-	'count' => 1,
122
-	'path' => __DIR__ . '/src/Http/Request.php',
120
+    'message' => '#^Method BlitzPHP\\\\Http\\\\Request\\:\\:validation\\(\\) should return BlitzPHP\\\\Validation\\\\Validation but returns Dimtrovich\\\\Validation\\\\Validation\\.$#',
121
+    'count' => 1,
122
+    'path' => __DIR__ . '/src/Http/Request.php',
123 123
 ];
124 124
 $ignoreErrors[] = [
125
-	'message' => '#^Parameter \\$default of method BlitzPHP\\\\Http\\\\Request\\:\\:old\\(\\) has invalid type BlitzPHP\\\\Wolke\\\\Model\\.$#',
126
-	'count' => 1,
127
-	'path' => __DIR__ . '/src/Http/Request.php',
125
+    'message' => '#^Parameter \\$default of method BlitzPHP\\\\Http\\\\Request\\:\\:old\\(\\) has invalid type BlitzPHP\\\\Wolke\\\\Model\\.$#',
126
+    'count' => 1,
127
+    'path' => __DIR__ . '/src/Http/Request.php',
128 128
 ];
129 129
 $ignoreErrors[] = [
130
-	'message' => '#^Call to an undefined method DateTimeInterface\\:\\:setTimezone\\(\\)\\.$#',
131
-	'count' => 1,
132
-	'path' => __DIR__ . '/src/Http/Response.php',
130
+    'message' => '#^Call to an undefined method DateTimeInterface\\:\\:setTimezone\\(\\)\\.$#',
131
+    'count' => 1,
132
+    'path' => __DIR__ . '/src/Http/Response.php',
133 133
 ];
134 134
 $ignoreErrors[] = [
135
-	'message' => '#^Property BlitzPHP\\\\Http\\\\ServerRequest\\:\\:\\$uploadedFiles \\(array\\<BlitzPHP\\\\Filesystem\\\\Files\\\\UploadedFile\\>\\) does not accept array\\<array\\<BlitzPHP\\\\Filesystem\\\\Files\\\\UploadedFile\\>\\|Psr\\\\Http\\\\Message\\\\UploadedFileInterface\\>\\.$#',
136
-	'count' => 1,
137
-	'path' => __DIR__ . '/src/Http/ServerRequest.php',
135
+    'message' => '#^Property BlitzPHP\\\\Http\\\\ServerRequest\\:\\:\\$uploadedFiles \\(array\\<BlitzPHP\\\\Filesystem\\\\Files\\\\UploadedFile\\>\\) does not accept array\\<array\\<BlitzPHP\\\\Filesystem\\\\Files\\\\UploadedFile\\>\\|Psr\\\\Http\\\\Message\\\\UploadedFileInterface\\>\\.$#',
136
+    'count' => 1,
137
+    'path' => __DIR__ . '/src/Http/ServerRequest.php',
138 138
 ];
139 139
 $ignoreErrors[] = [
140
-	'message' => '#^Access to constant DEBUG_SERVER on an unknown class PHPMailer\\\\PHPMailer\\\\SMTP\\.$#',
141
-	'count' => 1,
142
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
140
+    'message' => '#^Access to constant DEBUG_SERVER on an unknown class PHPMailer\\\\PHPMailer\\\\SMTP\\.$#',
141
+    'count' => 1,
142
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
143 143
 ];
144 144
 $ignoreErrors[] = [
145
-	'message' => '#^Access to property \\$AltBody on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
146
-	'count' => 2,
147
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
145
+    'message' => '#^Access to property \\$AltBody on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
146
+    'count' => 2,
147
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
148 148
 ];
149 149
 $ignoreErrors[] = [
150
-	'message' => '#^Access to property \\$Body on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
151
-	'count' => 2,
152
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
150
+    'message' => '#^Access to property \\$Body on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
151
+    'count' => 2,
152
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
153 153
 ];
154 154
 $ignoreErrors[] = [
155
-	'message' => '#^Access to property \\$CharSet on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
156
-	'count' => 2,
157
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
155
+    'message' => '#^Access to property \\$CharSet on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
156
+    'count' => 2,
157
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
158 158
 ];
159 159
 $ignoreErrors[] = [
160
-	'message' => '#^Access to property \\$DKIM_domain on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
161
-	'count' => 2,
162
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
160
+    'message' => '#^Access to property \\$DKIM_domain on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
161
+    'count' => 2,
162
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
163 163
 ];
164 164
 $ignoreErrors[] = [
165
-	'message' => '#^Access to property \\$DKIM_identity on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
166
-	'count' => 2,
167
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
165
+    'message' => '#^Access to property \\$DKIM_identity on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
166
+    'count' => 2,
167
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
168 168
 ];
169 169
 $ignoreErrors[] = [
170
-	'message' => '#^Access to property \\$DKIM_passphrase on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
171
-	'count' => 2,
172
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
170
+    'message' => '#^Access to property \\$DKIM_passphrase on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
171
+    'count' => 2,
172
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
173 173
 ];
174 174
 $ignoreErrors[] = [
175
-	'message' => '#^Access to property \\$DKIM_private on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
176
-	'count' => 2,
177
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
175
+    'message' => '#^Access to property \\$DKIM_private on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
176
+    'count' => 2,
177
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
178 178
 ];
179 179
 $ignoreErrors[] = [
180
-	'message' => '#^Access to property \\$DKIM_selector on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
181
-	'count' => 2,
182
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
180
+    'message' => '#^Access to property \\$DKIM_selector on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
181
+    'count' => 2,
182
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
183 183
 ];
184 184
 $ignoreErrors[] = [
185
-	'message' => '#^Access to property \\$Debugoutput on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
186
-	'count' => 2,
187
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
185
+    'message' => '#^Access to property \\$Debugoutput on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
186
+    'count' => 2,
187
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
188 188
 ];
189 189
 $ignoreErrors[] = [
190
-	'message' => '#^Access to property \\$From on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
191
-	'count' => 1,
192
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
190
+    'message' => '#^Access to property \\$From on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
191
+    'count' => 1,
192
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
193 193
 ];
194 194
 $ignoreErrors[] = [
195
-	'message' => '#^Access to property \\$Host on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
196
-	'count' => 2,
197
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
195
+    'message' => '#^Access to property \\$Host on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
196
+    'count' => 2,
197
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
198 198
 ];
199 199
 $ignoreErrors[] = [
200
-	'message' => '#^Access to property \\$Password on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
201
-	'count' => 2,
202
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
200
+    'message' => '#^Access to property \\$Password on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
201
+    'count' => 2,
202
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
203 203
 ];
204 204
 $ignoreErrors[] = [
205
-	'message' => '#^Access to property \\$Port on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
206
-	'count' => 2,
207
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
205
+    'message' => '#^Access to property \\$Port on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
206
+    'count' => 2,
207
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
208 208
 ];
209 209
 $ignoreErrors[] = [
210
-	'message' => '#^Access to property \\$Priority on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
211
-	'count' => 2,
212
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
210
+    'message' => '#^Access to property \\$Priority on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
211
+    'count' => 2,
212
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
213 213
 ];
214 214
 $ignoreErrors[] = [
215
-	'message' => '#^Access to property \\$SMTPAuth on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
216
-	'count' => 2,
217
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
215
+    'message' => '#^Access to property \\$SMTPAuth on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
216
+    'count' => 2,
217
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
218 218
 ];
219 219
 $ignoreErrors[] = [
220
-	'message' => '#^Access to property \\$SMTPDebug on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
221
-	'count' => 2,
222
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
220
+    'message' => '#^Access to property \\$SMTPDebug on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
221
+    'count' => 2,
222
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
223 223
 ];
224 224
 $ignoreErrors[] = [
225
-	'message' => '#^Access to property \\$SMTPSecure on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
226
-	'count' => 2,
227
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
225
+    'message' => '#^Access to property \\$SMTPSecure on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
226
+    'count' => 2,
227
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
228 228
 ];
229 229
 $ignoreErrors[] = [
230
-	'message' => '#^Access to property \\$Subject on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
231
-	'count' => 2,
232
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
230
+    'message' => '#^Access to property \\$Subject on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
231
+    'count' => 2,
232
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
233 233
 ];
234 234
 $ignoreErrors[] = [
235
-	'message' => '#^Access to property \\$Timeout on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
236
-	'count' => 2,
237
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
235
+    'message' => '#^Access to property \\$Timeout on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
236
+    'count' => 2,
237
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
238 238
 ];
239 239
 $ignoreErrors[] = [
240
-	'message' => '#^Access to property \\$Username on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
241
-	'count' => 2,
242
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
240
+    'message' => '#^Access to property \\$Username on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
241
+    'count' => 2,
242
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
243 243
 ];
244 244
 $ignoreErrors[] = [
245
-	'message' => '#^Call to method addAddress\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
246
-	'count' => 1,
247
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
245
+    'message' => '#^Call to method addAddress\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
246
+    'count' => 1,
247
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
248 248
 ];
249 249
 $ignoreErrors[] = [
250
-	'message' => '#^Call to method addAttachment\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
251
-	'count' => 1,
252
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
250
+    'message' => '#^Call to method addAttachment\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
251
+    'count' => 1,
252
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
253 253
 ];
254 254
 $ignoreErrors[] = [
255
-	'message' => '#^Call to method addBCC\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
256
-	'count' => 1,
257
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
255
+    'message' => '#^Call to method addBCC\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
256
+    'count' => 1,
257
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
258 258
 ];
259 259
 $ignoreErrors[] = [
260
-	'message' => '#^Call to method addCC\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
261
-	'count' => 1,
262
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
260
+    'message' => '#^Call to method addCC\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
261
+    'count' => 1,
262
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
263 263
 ];
264 264
 $ignoreErrors[] = [
265
-	'message' => '#^Call to method addCustomHeader\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
266
-	'count' => 1,
267
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
265
+    'message' => '#^Call to method addCustomHeader\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
266
+    'count' => 1,
267
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
268 268
 ];
269 269
 $ignoreErrors[] = [
270
-	'message' => '#^Call to method addEmbeddedImage\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
271
-	'count' => 1,
272
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
270
+    'message' => '#^Call to method addEmbeddedImage\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
271
+    'count' => 1,
272
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
273 273
 ];
274 274
 $ignoreErrors[] = [
275
-	'message' => '#^Call to method addReplyTo\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
276
-	'count' => 1,
277
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
275
+    'message' => '#^Call to method addReplyTo\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
276
+    'count' => 1,
277
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
278 278
 ];
279 279
 $ignoreErrors[] = [
280
-	'message' => '#^Call to method addStringAttachment\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
281
-	'count' => 1,
282
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
280
+    'message' => '#^Call to method addStringAttachment\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
281
+    'count' => 1,
282
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
283 283
 ];
284 284
 $ignoreErrors[] = [
285
-	'message' => '#^Call to method addStringEmbeddedImage\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
286
-	'count' => 1,
287
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
285
+    'message' => '#^Call to method addStringEmbeddedImage\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
286
+    'count' => 1,
287
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
288 288
 ];
289 289
 $ignoreErrors[] = [
290
-	'message' => '#^Call to method clearAddresses\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
291
-	'count' => 1,
292
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
290
+    'message' => '#^Call to method clearAddresses\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
291
+    'count' => 1,
292
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
293 293
 ];
294 294
 $ignoreErrors[] = [
295
-	'message' => '#^Call to method clearBCCs\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
296
-	'count' => 1,
297
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
295
+    'message' => '#^Call to method clearBCCs\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
296
+    'count' => 1,
297
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
298 298
 ];
299 299
 $ignoreErrors[] = [
300
-	'message' => '#^Call to method clearCCs\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
301
-	'count' => 1,
302
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
300
+    'message' => '#^Call to method clearCCs\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
301
+    'count' => 1,
302
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
303 303
 ];
304 304
 $ignoreErrors[] = [
305
-	'message' => '#^Call to method clearReplyTos\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
306
-	'count' => 1,
307
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
305
+    'message' => '#^Call to method clearReplyTos\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
306
+    'count' => 1,
307
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
308 308
 ];
309 309
 $ignoreErrors[] = [
310
-	'message' => '#^Call to method getLastMessageID\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
311
-	'count' => 1,
312
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
310
+    'message' => '#^Call to method getLastMessageID\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
311
+    'count' => 1,
312
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
313 313
 ];
314 314
 $ignoreErrors[] = [
315
-	'message' => '#^Call to method isHTML\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
316
-	'count' => 2,
317
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
315
+    'message' => '#^Call to method isHTML\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
316
+    'count' => 2,
317
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
318 318
 ];
319 319
 $ignoreErrors[] = [
320
-	'message' => '#^Call to method isMail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
321
-	'count' => 1,
322
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
320
+    'message' => '#^Call to method isMail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
321
+    'count' => 1,
322
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
323 323
 ];
324 324
 $ignoreErrors[] = [
325
-	'message' => '#^Call to method isQmail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
326
-	'count' => 1,
327
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
325
+    'message' => '#^Call to method isQmail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
326
+    'count' => 1,
327
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
328 328
 ];
329 329
 $ignoreErrors[] = [
330
-	'message' => '#^Call to method isSMTP\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
331
-	'count' => 1,
332
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
330
+    'message' => '#^Call to method isSMTP\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
331
+    'count' => 1,
332
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
333 333
 ];
334 334
 $ignoreErrors[] = [
335
-	'message' => '#^Call to method isSendmail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
336
-	'count' => 1,
337
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
335
+    'message' => '#^Call to method isSendmail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
336
+    'count' => 1,
337
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
338 338
 ];
339 339
 $ignoreErrors[] = [
340
-	'message' => '#^Call to method send\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
341
-	'count' => 1,
342
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
340
+    'message' => '#^Call to method send\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
341
+    'count' => 1,
342
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
343 343
 ];
344 344
 $ignoreErrors[] = [
345
-	'message' => '#^Call to method setFrom\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
346
-	'count' => 1,
347
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
345
+    'message' => '#^Call to method setFrom\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
346
+    'count' => 1,
347
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
348 348
 ];
349 349
 $ignoreErrors[] = [
350
-	'message' => '#^Call to method sign\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
351
-	'count' => 1,
352
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
350
+    'message' => '#^Call to method sign\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
351
+    'count' => 1,
352
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
353 353
 ];
354 354
 $ignoreErrors[] = [
355
-	'message' => '#^Class PHPMailer\\\\PHPMailer\\\\PHPMailer not found\\.$#',
356
-	'count' => 1,
357
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
355
+    'message' => '#^Class PHPMailer\\\\PHPMailer\\\\PHPMailer not found\\.$#',
356
+    'count' => 1,
357
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
358 358
 ];
359 359
 $ignoreErrors[] = [
360
-	'message' => '#^Instantiated class PHPMailer\\\\PHPMailer\\\\PHPMailer not found\\.$#',
361
-	'count' => 1,
362
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
360
+    'message' => '#^Instantiated class PHPMailer\\\\PHPMailer\\\\PHPMailer not found\\.$#',
361
+    'count' => 1,
362
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
363 363
 ];
364 364
 $ignoreErrors[] = [
365
-	'message' => '#^PHPDoc tag @throws with type PHPMailer\\\\PHPMailer\\\\Exception is not subtype of Throwable$#',
366
-	'count' => 11,
367
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
365
+    'message' => '#^PHPDoc tag @throws with type PHPMailer\\\\PHPMailer\\\\Exception is not subtype of Throwable$#',
366
+    'count' => 11,
367
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
368 368
 ];
369 369
 $ignoreErrors[] = [
370
-	'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\PHPMailer\\:\\:\\$mailer has unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer as its type\\.$#',
371
-	'count' => 1,
372
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
370
+    'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\PHPMailer\\:\\:\\$mailer has unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer as its type\\.$#',
371
+    'count' => 1,
372
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
373 373
 ];
374 374
 $ignoreErrors[] = [
375
-	'message' => '#^Call to method addBcc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
376
-	'count' => 1,
377
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
375
+    'message' => '#^Call to method addBcc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
376
+    'count' => 1,
377
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
378 378
 ];
379 379
 $ignoreErrors[] = [
380
-	'message' => '#^Call to method addCC\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
381
-	'count' => 1,
382
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
380
+    'message' => '#^Call to method addCC\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
381
+    'count' => 1,
382
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
383 383
 ];
384 384
 $ignoreErrors[] = [
385
-	'message' => '#^Call to method addPart\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
386
-	'count' => 4,
387
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
385
+    'message' => '#^Call to method addPart\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
386
+    'count' => 4,
387
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
388 388
 ];
389 389
 $ignoreErrors[] = [
390
-	'message' => '#^Call to method addReplyTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
391
-	'count' => 1,
392
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
390
+    'message' => '#^Call to method addReplyTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
391
+    'count' => 1,
392
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
393 393
 ];
394 394
 $ignoreErrors[] = [
395
-	'message' => '#^Call to method addTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
396
-	'count' => 1,
397
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
395
+    'message' => '#^Call to method addTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
396
+    'count' => 1,
397
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
398 398
 ];
399 399
 $ignoreErrors[] = [
400
-	'message' => '#^Call to method asInline\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Part\\\\DataPart\\.$#',
401
-	'count' => 2,
402
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
400
+    'message' => '#^Call to method asInline\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Part\\\\DataPart\\.$#',
401
+    'count' => 2,
402
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
403 403
 ];
404 404
 $ignoreErrors[] = [
405
-	'message' => '#^Call to method bcc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
406
-	'count' => 1,
407
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
405
+    'message' => '#^Call to method bcc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
406
+    'count' => 1,
407
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
408 408
 ];
409 409
 $ignoreErrors[] = [
410
-	'message' => '#^Call to method cc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
411
-	'count' => 1,
412
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
410
+    'message' => '#^Call to method cc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
411
+    'count' => 1,
412
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
413 413
 ];
414 414
 $ignoreErrors[] = [
415
-	'message' => '#^Call to method from\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
416
-	'count' => 1,
417
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
415
+    'message' => '#^Call to method from\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
416
+    'count' => 1,
417
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
418 418
 ];
419 419
 $ignoreErrors[] = [
420
-	'message' => '#^Call to method generateMessageId\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
421
-	'count' => 1,
422
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
420
+    'message' => '#^Call to method generateMessageId\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
421
+    'count' => 1,
422
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
423 423
 ];
424 424
 $ignoreErrors[] = [
425
-	'message' => '#^Call to method getHeaders\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
426
-	'count' => 1,
427
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
425
+    'message' => '#^Call to method getHeaders\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
426
+    'count' => 1,
427
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
428 428
 ];
429 429
 $ignoreErrors[] = [
430
-	'message' => '#^Call to method html\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
431
-	'count' => 1,
432
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
430
+    'message' => '#^Call to method html\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
431
+    'count' => 1,
432
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
433 433
 ];
434 434
 $ignoreErrors[] = [
435
-	'message' => '#^Call to method priority\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
436
-	'count' => 1,
437
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
435
+    'message' => '#^Call to method priority\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
436
+    'count' => 1,
437
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
438 438
 ];
439 439
 $ignoreErrors[] = [
440
-	'message' => '#^Call to method replyTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
441
-	'count' => 1,
442
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
440
+    'message' => '#^Call to method replyTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
441
+    'count' => 1,
442
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
443 443
 ];
444 444
 $ignoreErrors[] = [
445
-	'message' => '#^Call to method send\\(\\) on an unknown class Symfony\\\\Component\\\\Mailer\\\\Mailer\\.$#',
446
-	'count' => 1,
447
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
445
+    'message' => '#^Call to method send\\(\\) on an unknown class Symfony\\\\Component\\\\Mailer\\\\Mailer\\.$#',
446
+    'count' => 1,
447
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
448 448
 ];
449 449
 $ignoreErrors[] = [
450
-	'message' => '#^Call to method sign\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\DkimSigner\\.$#',
451
-	'count' => 1,
452
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
450
+    'message' => '#^Call to method sign\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\DkimSigner\\.$#',
451
+    'count' => 1,
452
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
453 453
 ];
454 454
 $ignoreErrors[] = [
455
-	'message' => '#^Call to method sign\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\SMimeSigner\\.$#',
456
-	'count' => 1,
457
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
455
+    'message' => '#^Call to method sign\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\SMimeSigner\\.$#',
456
+    'count' => 1,
457
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
458 458
 ];
459 459
 $ignoreErrors[] = [
460
-	'message' => '#^Call to method subject\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
461
-	'count' => 1,
462
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
460
+    'message' => '#^Call to method subject\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
461
+    'count' => 1,
462
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
463 463
 ];
464 464
 $ignoreErrors[] = [
465
-	'message' => '#^Call to method text\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
466
-	'count' => 1,
467
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
465
+    'message' => '#^Call to method text\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
466
+    'count' => 1,
467
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
468 468
 ];
469 469
 $ignoreErrors[] = [
470
-	'message' => '#^Call to method to\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
471
-	'count' => 1,
472
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
470
+    'message' => '#^Call to method to\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
471
+    'count' => 1,
472
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
473 473
 ];
474 474
 $ignoreErrors[] = [
475
-	'message' => '#^Call to static method fromDsn\\(\\) on an unknown class Symfony\\\\Component\\\\Mailer\\\\Transport\\.$#',
476
-	'count' => 1,
477
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
475
+    'message' => '#^Call to static method fromDsn\\(\\) on an unknown class Symfony\\\\Component\\\\Mailer\\\\Transport\\.$#',
476
+    'count' => 1,
477
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
478 478
 ];
479 479
 $ignoreErrors[] = [
480
-	'message' => '#^Class Symfony\\\\Component\\\\Mailer\\\\Mailer not found\\.$#',
481
-	'count' => 1,
482
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
480
+    'message' => '#^Class Symfony\\\\Component\\\\Mailer\\\\Mailer not found\\.$#',
481
+    'count' => 1,
482
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
483 483
 ];
484 484
 $ignoreErrors[] = [
485
-	'message' => '#^Instantiated class Symfony\\\\Component\\\\Mailer\\\\Mailer not found\\.$#',
486
-	'count' => 1,
487
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
485
+    'message' => '#^Instantiated class Symfony\\\\Component\\\\Mailer\\\\Mailer not found\\.$#',
486
+    'count' => 1,
487
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
488 488
 ];
489 489
 $ignoreErrors[] = [
490
-	'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Address not found\\.$#',
491
-	'count' => 1,
492
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
490
+    'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Address not found\\.$#',
491
+    'count' => 1,
492
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
493 493
 ];
494 494
 $ignoreErrors[] = [
495
-	'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\DkimSigner not found\\.$#',
496
-	'count' => 1,
497
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
495
+    'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\DkimSigner not found\\.$#',
496
+    'count' => 1,
497
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
498 498
 ];
499 499
 $ignoreErrors[] = [
500
-	'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\SMimeSigner not found\\.$#',
501
-	'count' => 1,
502
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
500
+    'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\SMimeSigner not found\\.$#',
501
+    'count' => 1,
502
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
503 503
 ];
504 504
 $ignoreErrors[] = [
505
-	'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Email not found\\.$#',
506
-	'count' => 1,
507
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
505
+    'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Email not found\\.$#',
506
+    'count' => 1,
507
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
508 508
 ];
509 509
 $ignoreErrors[] = [
510
-	'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Part\\\\DataPart not found\\.$#',
511
-	'count' => 4,
512
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
510
+    'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Part\\\\DataPart not found\\.$#',
511
+    'count' => 4,
512
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
513 513
 ];
514 514
 $ignoreErrors[] = [
515
-	'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Part\\\\File not found\\.$#',
516
-	'count' => 2,
517
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
515
+    'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Part\\\\File not found\\.$#',
516
+    'count' => 2,
517
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
518 518
 ];
519 519
 $ignoreErrors[] = [
520
-	'message' => '#^Method BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:makeAddress\\(\\) has invalid return type Symfony\\\\Component\\\\Mime\\\\Address\\.$#',
521
-	'count' => 1,
522
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
520
+    'message' => '#^Method BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:makeAddress\\(\\) has invalid return type Symfony\\\\Component\\\\Mime\\\\Address\\.$#',
521
+    'count' => 1,
522
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
523 523
 ];
524 524
 $ignoreErrors[] = [
525
-	'message' => '#^Method BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:transporter\\(\\) has invalid return type Symfony\\\\Component\\\\Mailer\\\\Mailer\\.$#',
526
-	'count' => 1,
527
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
525
+    'message' => '#^Method BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:transporter\\(\\) has invalid return type Symfony\\\\Component\\\\Mailer\\\\Mailer\\.$#',
526
+    'count' => 1,
527
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
528 528
 ];
529 529
 $ignoreErrors[] = [
530
-	'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$encryption is never read, only written\\.$#',
531
-	'count' => 1,
532
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
530
+    'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$encryption is never read, only written\\.$#',
531
+    'count' => 1,
532
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
533 533
 ];
534 534
 $ignoreErrors[] = [
535
-	'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$mailer has unknown class Symfony\\\\Component\\\\Mime\\\\Email as its type\\.$#',
536
-	'count' => 1,
537
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
535
+    'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$mailer has unknown class Symfony\\\\Component\\\\Mime\\\\Email as its type\\.$#',
536
+    'count' => 1,
537
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
538 538
 ];
539 539
 $ignoreErrors[] = [
540
-	'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$timeout is never read, only written\\.$#',
541
-	'count' => 1,
542
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
540
+    'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$timeout is never read, only written\\.$#',
541
+    'count' => 1,
542
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
543 543
 ];
544 544
 $ignoreErrors[] = [
545
-	'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$transporter has unknown class Symfony\\\\Component\\\\Mailer\\\\Mailer as its type\\.$#',
546
-	'count' => 1,
547
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
545
+    'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$transporter has unknown class Symfony\\\\Component\\\\Mailer\\\\Mailer as its type\\.$#',
546
+    'count' => 1,
547
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
548 548
 ];
549 549
 $ignoreErrors[] = [
550
-	'message' => '#^Property BlitzPHP\\\\Router\\\\AutoRouter\\:\\:\\$methodPos is never read, only written\\.$#',
551
-	'count' => 1,
552
-	'path' => __DIR__ . '/src/Router/AutoRouter.php',
550
+    'message' => '#^Property BlitzPHP\\\\Router\\\\AutoRouter\\:\\:\\$methodPos is never read, only written\\.$#',
551
+    'count' => 1,
552
+    'path' => __DIR__ . '/src/Router/AutoRouter.php',
553 553
 ];
554 554
 $ignoreErrors[] = [
555
-	'message' => '#^Property BlitzPHP\\\\Router\\\\Dispatcher\\:\\:\\$request \\(BlitzPHP\\\\Http\\\\ServerRequest\\) does not accept Psr\\\\Http\\\\Message\\\\ServerRequestInterface\\.$#',
556
-	'count' => 1,
557
-	'path' => __DIR__ . '/src/Router/Dispatcher.php',
555
+    'message' => '#^Property BlitzPHP\\\\Router\\\\Dispatcher\\:\\:\\$request \\(BlitzPHP\\\\Http\\\\ServerRequest\\) does not accept Psr\\\\Http\\\\Message\\\\ServerRequestInterface\\.$#',
556
+    'count' => 1,
557
+    'path' => __DIR__ . '/src/Router/Dispatcher.php',
558 558
 ];
559 559
 $ignoreErrors[] = [
560
-	'message' => '#^Property BlitzPHP\\\\Router\\\\Dispatcher\\:\\:\\$response \\(BlitzPHP\\\\Http\\\\Response\\) does not accept Psr\\\\Http\\\\Message\\\\ResponseInterface\\.$#',
561
-	'count' => 4,
562
-	'path' => __DIR__ . '/src/Router/Dispatcher.php',
560
+    'message' => '#^Property BlitzPHP\\\\Router\\\\Dispatcher\\:\\:\\$response \\(BlitzPHP\\\\Http\\\\Response\\) does not accept Psr\\\\Http\\\\Message\\\\ResponseInterface\\.$#',
561
+    'count' => 4,
562
+    'path' => __DIR__ . '/src/Router/Dispatcher.php',
563 563
 ];
564 564
 $ignoreErrors[] = [
565
-	'message' => '#^Call to method getKeyName\\(\\) on an unknown class BlitzPHP\\\\Wolke\\\\Model\\.$#',
566
-	'count' => 1,
567
-	'path' => __DIR__ . '/src/Validation/Rules/Unique.php',
565
+    'message' => '#^Call to method getKeyName\\(\\) on an unknown class BlitzPHP\\\\Wolke\\\\Model\\.$#',
566
+    'count' => 1,
567
+    'path' => __DIR__ . '/src/Validation/Rules/Unique.php',
568 568
 ];
569 569
 $ignoreErrors[] = [
570
-	'message' => '#^Parameter \\$entity of method BlitzPHP\\\\Validation\\\\Rules\\\\Unique\\:\\:ignoreModel\\(\\) has invalid type BlitzPHP\\\\Wolke\\\\Model\\.$#',
571
-	'count' => 1,
572
-	'path' => __DIR__ . '/src/Validation/Rules/Unique.php',
570
+    'message' => '#^Parameter \\$entity of method BlitzPHP\\\\Validation\\\\Rules\\\\Unique\\:\\:ignoreModel\\(\\) has invalid type BlitzPHP\\\\Wolke\\\\Model\\.$#',
571
+    'count' => 1,
572
+    'path' => __DIR__ . '/src/Validation/Rules/Unique.php',
573 573
 ];
574 574
 $ignoreErrors[] = [
575
-	'message' => '#^Call to method directive\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#',
576
-	'count' => 1,
577
-	'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
575
+    'message' => '#^Call to method directive\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#',
576
+    'count' => 1,
577
+    'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
578 578
 ];
579 579
 $ignoreErrors[] = [
580
-	'message' => '#^Call to method if\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#',
581
-	'count' => 1,
582
-	'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
580
+    'message' => '#^Call to method if\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#',
581
+    'count' => 1,
582
+    'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
583 583
 ];
584 584
 $ignoreErrors[] = [
585
-	'message' => '#^Call to method render\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#',
586
-	'count' => 1,
587
-	'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
585
+    'message' => '#^Call to method render\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#',
586
+    'count' => 1,
587
+    'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
588 588
 ];
589 589
 $ignoreErrors[] = [
590
-	'message' => '#^Instantiated class Jenssegers\\\\Blade\\\\Blade not found\\.$#',
591
-	'count' => 1,
592
-	'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
590
+    'message' => '#^Instantiated class Jenssegers\\\\Blade\\\\Blade not found\\.$#',
591
+    'count' => 1,
592
+    'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
593 593
 ];
594 594
 $ignoreErrors[] = [
595
-	'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\BladeAdapter\\:\\:\\$engine has unknown class Jenssegers\\\\Blade\\\\Blade as its type\\.$#',
596
-	'count' => 1,
597
-	'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
595
+    'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\BladeAdapter\\:\\:\\$engine has unknown class Jenssegers\\\\Blade\\\\Blade as its type\\.$#',
596
+    'count' => 1,
597
+    'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
598 598
 ];
599 599
 $ignoreErrors[] = [
600
-	'message' => '#^Call to method renderToString\\(\\) on an unknown class Latte\\\\Engine\\.$#',
601
-	'count' => 1,
602
-	'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
600
+    'message' => '#^Call to method renderToString\\(\\) on an unknown class Latte\\\\Engine\\.$#',
601
+    'count' => 1,
602
+    'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
603 603
 ];
604 604
 $ignoreErrors[] = [
605
-	'message' => '#^Call to method setAutoRefresh\\(\\) on an unknown class Latte\\\\Engine\\.$#',
606
-	'count' => 1,
607
-	'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
605
+    'message' => '#^Call to method setAutoRefresh\\(\\) on an unknown class Latte\\\\Engine\\.$#',
606
+    'count' => 1,
607
+    'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
608 608
 ];
609 609
 $ignoreErrors[] = [
610
-	'message' => '#^Call to method setLoader\\(\\) on an unknown class Latte\\\\Engine\\.$#',
611
-	'count' => 1,
612
-	'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
610
+    'message' => '#^Call to method setLoader\\(\\) on an unknown class Latte\\\\Engine\\.$#',
611
+    'count' => 1,
612
+    'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
613 613
 ];
614 614
 $ignoreErrors[] = [
615
-	'message' => '#^Call to method setTempDirectory\\(\\) on an unknown class Latte\\\\Engine\\.$#',
616
-	'count' => 1,
617
-	'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
615
+    'message' => '#^Call to method setTempDirectory\\(\\) on an unknown class Latte\\\\Engine\\.$#',
616
+    'count' => 1,
617
+    'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
618 618
 ];
619 619
 $ignoreErrors[] = [
620
-	'message' => '#^Class Latte\\\\Engine not found\\.$#',
621
-	'count' => 1,
622
-	'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
620
+    'message' => '#^Class Latte\\\\Engine not found\\.$#',
621
+    'count' => 1,
622
+    'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
623 623
 ];
624 624
 $ignoreErrors[] = [
625
-	'message' => '#^Instantiated class Latte\\\\Engine not found\\.$#',
626
-	'count' => 1,
627
-	'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
625
+    'message' => '#^Instantiated class Latte\\\\Engine not found\\.$#',
626
+    'count' => 1,
627
+    'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
628 628
 ];
629 629
 $ignoreErrors[] = [
630
-	'message' => '#^Instantiated class Latte\\\\Loaders\\\\FileLoader not found\\.$#',
631
-	'count' => 1,
632
-	'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
630
+    'message' => '#^Instantiated class Latte\\\\Loaders\\\\FileLoader not found\\.$#',
631
+    'count' => 1,
632
+    'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
633 633
 ];
634 634
 $ignoreErrors[] = [
635
-	'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\LatteAdapter\\:\\:\\$latte has unknown class Latte\\\\Engine as its type\\.$#',
636
-	'count' => 1,
637
-	'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
635
+    'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\LatteAdapter\\:\\:\\$latte has unknown class Latte\\\\Engine as its type\\.$#',
636
+    'count' => 1,
637
+    'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
638 638
 ];
639 639
 $ignoreErrors[] = [
640
-	'message' => '#^Call to method addFolder\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#',
641
-	'count' => 2,
642
-	'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
640
+    'message' => '#^Call to method addFolder\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#',
641
+    'count' => 2,
642
+    'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
643 643
 ];
644 644
 $ignoreErrors[] = [
645
-	'message' => '#^Call to method loadExtension\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#',
646
-	'count' => 1,
647
-	'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
645
+    'message' => '#^Call to method loadExtension\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#',
646
+    'count' => 1,
647
+    'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
648 648
 ];
649 649
 $ignoreErrors[] = [
650
-	'message' => '#^Call to method registerFunction\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#',
651
-	'count' => 1,
652
-	'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
650
+    'message' => '#^Call to method registerFunction\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#',
651
+    'count' => 1,
652
+    'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
653 653
 ];
654 654
 $ignoreErrors[] = [
655
-	'message' => '#^Call to method render\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#',
656
-	'count' => 1,
657
-	'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
655
+    'message' => '#^Call to method render\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#',
656
+    'count' => 1,
657
+    'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
658 658
 ];
659 659
 $ignoreErrors[] = [
660
-	'message' => '#^Class League\\\\Plates\\\\Engine not found\\.$#',
661
-	'count' => 1,
662
-	'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
660
+    'message' => '#^Class League\\\\Plates\\\\Engine not found\\.$#',
661
+    'count' => 1,
662
+    'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
663 663
 ];
664 664
 $ignoreErrors[] = [
665
-	'message' => '#^Instantiated class League\\\\Plates\\\\Engine not found\\.$#',
666
-	'count' => 1,
667
-	'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
665
+    'message' => '#^Instantiated class League\\\\Plates\\\\Engine not found\\.$#',
666
+    'count' => 1,
667
+    'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
668 668
 ];
669 669
 $ignoreErrors[] = [
670
-	'message' => '#^Instantiated class League\\\\Plates\\\\Extension\\\\Asset not found\\.$#',
671
-	'count' => 1,
672
-	'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
670
+    'message' => '#^Instantiated class League\\\\Plates\\\\Extension\\\\Asset not found\\.$#',
671
+    'count' => 1,
672
+    'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
673 673
 ];
674 674
 $ignoreErrors[] = [
675
-	'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\PlatesAdapter\\:\\:\\$engine has unknown class League\\\\Plates\\\\Engine as its type\\.$#',
676
-	'count' => 1,
677
-	'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
675
+    'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\PlatesAdapter\\:\\:\\$engine has unknown class League\\\\Plates\\\\Engine as its type\\.$#',
676
+    'count' => 1,
677
+    'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
678 678
 ];
679 679
 $ignoreErrors[] = [
680
-	'message' => '#^Access to constant CACHING_LIFETIME_SAVED on an unknown class Smarty\\.$#',
681
-	'count' => 1,
682
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
680
+    'message' => '#^Access to constant CACHING_LIFETIME_SAVED on an unknown class Smarty\\.$#',
681
+    'count' => 1,
682
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
683 683
 ];
684 684
 $ignoreErrors[] = [
685
-	'message' => '#^Access to constant CACHING_OFF on an unknown class Smarty\\.$#',
686
-	'count' => 1,
687
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
685
+    'message' => '#^Access to constant CACHING_OFF on an unknown class Smarty\\.$#',
686
+    'count' => 1,
687
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
688 688
 ];
689 689
 $ignoreErrors[] = [
690
-	'message' => '#^Call to method addPluginsDir\\(\\) on an unknown class Smarty\\.$#',
691
-	'count' => 1,
692
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
690
+    'message' => '#^Call to method addPluginsDir\\(\\) on an unknown class Smarty\\.$#',
691
+    'count' => 1,
692
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
693 693
 ];
694 694
 $ignoreErrors[] = [
695
-	'message' => '#^Call to method assign\\(\\) on an unknown class Smarty\\.$#',
696
-	'count' => 1,
697
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
695
+    'message' => '#^Call to method assign\\(\\) on an unknown class Smarty\\.$#',
696
+    'count' => 1,
697
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
698 698
 ];
699 699
 $ignoreErrors[] = [
700
-	'message' => '#^Call to method fetch\\(\\) on an unknown class Smarty\\.$#',
701
-	'count' => 1,
702
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
700
+    'message' => '#^Call to method fetch\\(\\) on an unknown class Smarty\\.$#',
701
+    'count' => 1,
702
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
703 703
 ];
704 704
 $ignoreErrors[] = [
705
-	'message' => '#^Call to method setCacheLifetime\\(\\) on an unknown class Smarty\\.$#',
706
-	'count' => 1,
707
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
705
+    'message' => '#^Call to method setCacheLifetime\\(\\) on an unknown class Smarty\\.$#',
706
+    'count' => 1,
707
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
708 708
 ];
709 709
 $ignoreErrors[] = [
710
-	'message' => '#^Call to method setCaching\\(\\) on an unknown class Smarty\\.$#',
711
-	'count' => 1,
712
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
710
+    'message' => '#^Call to method setCaching\\(\\) on an unknown class Smarty\\.$#',
711
+    'count' => 1,
712
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
713 713
 ];
714 714
 $ignoreErrors[] = [
715
-	'message' => '#^Call to method setCompileId\\(\\) on an unknown class Smarty\\.$#',
716
-	'count' => 1,
717
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
715
+    'message' => '#^Call to method setCompileId\\(\\) on an unknown class Smarty\\.$#',
716
+    'count' => 1,
717
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
718 718
 ];
719 719
 $ignoreErrors[] = [
720
-	'message' => '#^Call to method setTemplateDir\\(\\) on an unknown class Smarty\\.$#',
721
-	'count' => 1,
722
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
720
+    'message' => '#^Call to method setTemplateDir\\(\\) on an unknown class Smarty\\.$#',
721
+    'count' => 1,
722
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
723 723
 ];
724 724
 $ignoreErrors[] = [
725
-	'message' => '#^Class Smarty not found\\.$#',
726
-	'count' => 1,
727
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
725
+    'message' => '#^Class Smarty not found\\.$#',
726
+    'count' => 1,
727
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
728 728
 ];
729 729
 $ignoreErrors[] = [
730
-	'message' => '#^Instantiated class Smarty not found\\.$#',
731
-	'count' => 1,
732
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
730
+    'message' => '#^Instantiated class Smarty not found\\.$#',
731
+    'count' => 1,
732
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
733 733
 ];
734 734
 $ignoreErrors[] = [
735
-	'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\SmartyAdapter\\:\\:\\$engine has unknown class Smarty as its type\\.$#',
736
-	'count' => 1,
737
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
735
+    'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\SmartyAdapter\\:\\:\\$engine has unknown class Smarty as its type\\.$#',
736
+    'count' => 1,
737
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
738 738
 ];
739 739
 $ignoreErrors[] = [
740
-	'message' => '#^Call to method addFilter\\(\\) on an unknown class Twig\\\\Environment\\.$#',
741
-	'count' => 1,
742
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
740
+    'message' => '#^Call to method addFilter\\(\\) on an unknown class Twig\\\\Environment\\.$#',
741
+    'count' => 1,
742
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
743 743
 ];
744 744
 $ignoreErrors[] = [
745
-	'message' => '#^Call to method addFunction\\(\\) on an unknown class Twig\\\\Environment\\.$#',
746
-	'count' => 1,
747
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
745
+    'message' => '#^Call to method addFunction\\(\\) on an unknown class Twig\\\\Environment\\.$#',
746
+    'count' => 1,
747
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
748 748
 ];
749 749
 $ignoreErrors[] = [
750
-	'message' => '#^Call to method addGlobal\\(\\) on an unknown class Twig\\\\Environment\\.$#',
751
-	'count' => 1,
752
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
750
+    'message' => '#^Call to method addGlobal\\(\\) on an unknown class Twig\\\\Environment\\.$#',
751
+    'count' => 1,
752
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
753 753
 ];
754 754
 $ignoreErrors[] = [
755
-	'message' => '#^Call to method disableAutoReload\\(\\) on an unknown class Twig\\\\Environment\\.$#',
756
-	'count' => 1,
757
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
755
+    'message' => '#^Call to method disableAutoReload\\(\\) on an unknown class Twig\\\\Environment\\.$#',
756
+    'count' => 1,
757
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
758 758
 ];
759 759
 $ignoreErrors[] = [
760
-	'message' => '#^Call to method disableDebug\\(\\) on an unknown class Twig\\\\Environment\\.$#',
761
-	'count' => 1,
762
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
760
+    'message' => '#^Call to method disableDebug\\(\\) on an unknown class Twig\\\\Environment\\.$#',
761
+    'count' => 1,
762
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
763 763
 ];
764 764
 $ignoreErrors[] = [
765
-	'message' => '#^Call to method disableStrictVariables\\(\\) on an unknown class Twig\\\\Environment\\.$#',
766
-	'count' => 1,
767
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
765
+    'message' => '#^Call to method disableStrictVariables\\(\\) on an unknown class Twig\\\\Environment\\.$#',
766
+    'count' => 1,
767
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
768 768
 ];
769 769
 $ignoreErrors[] = [
770
-	'message' => '#^Call to method enableAutoReload\\(\\) on an unknown class Twig\\\\Environment\\.$#',
771
-	'count' => 1,
772
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
770
+    'message' => '#^Call to method enableAutoReload\\(\\) on an unknown class Twig\\\\Environment\\.$#',
771
+    'count' => 1,
772
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
773 773
 ];
774 774
 $ignoreErrors[] = [
775
-	'message' => '#^Call to method enableDebug\\(\\) on an unknown class Twig\\\\Environment\\.$#',
776
-	'count' => 1,
777
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
775
+    'message' => '#^Call to method enableDebug\\(\\) on an unknown class Twig\\\\Environment\\.$#',
776
+    'count' => 1,
777
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
778 778
 ];
779 779
 $ignoreErrors[] = [
780
-	'message' => '#^Call to method enableStrictVariables\\(\\) on an unknown class Twig\\\\Environment\\.$#',
781
-	'count' => 1,
782
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
780
+    'message' => '#^Call to method enableStrictVariables\\(\\) on an unknown class Twig\\\\Environment\\.$#',
781
+    'count' => 1,
782
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
783 783
 ];
784 784
 $ignoreErrors[] = [
785
-	'message' => '#^Call to method render\\(\\) on an unknown class Twig\\\\Environment\\.$#',
786
-	'count' => 1,
787
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
785
+    'message' => '#^Call to method render\\(\\) on an unknown class Twig\\\\Environment\\.$#',
786
+    'count' => 1,
787
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
788 788
 ];
789 789
 $ignoreErrors[] = [
790
-	'message' => '#^Call to method setCache\\(\\) on an unknown class Twig\\\\Environment\\.$#',
791
-	'count' => 1,
792
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
790
+    'message' => '#^Call to method setCache\\(\\) on an unknown class Twig\\\\Environment\\.$#',
791
+    'count' => 1,
792
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
793 793
 ];
794 794
 $ignoreErrors[] = [
795
-	'message' => '#^Call to method setCharset\\(\\) on an unknown class Twig\\\\Environment\\.$#',
796
-	'count' => 1,
797
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
795
+    'message' => '#^Call to method setCharset\\(\\) on an unknown class Twig\\\\Environment\\.$#',
796
+    'count' => 1,
797
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
798 798
 ];
799 799
 $ignoreErrors[] = [
800
-	'message' => '#^Class Twig\\\\Environment not found\\.$#',
801
-	'count' => 1,
802
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
800
+    'message' => '#^Class Twig\\\\Environment not found\\.$#',
801
+    'count' => 1,
802
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
803 803
 ];
804 804
 $ignoreErrors[] = [
805
-	'message' => '#^Class Twig\\\\TwigFilter not found\\.$#',
806
-	'count' => 1,
807
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
805
+    'message' => '#^Class Twig\\\\TwigFilter not found\\.$#',
806
+    'count' => 1,
807
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
808 808
 ];
809 809
 $ignoreErrors[] = [
810
-	'message' => '#^Class Twig\\\\TwigFunction not found\\.$#',
811
-	'count' => 1,
812
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
810
+    'message' => '#^Class Twig\\\\TwigFunction not found\\.$#',
811
+    'count' => 1,
812
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
813 813
 ];
814 814
 $ignoreErrors[] = [
815
-	'message' => '#^Instantiated class Twig\\\\Environment not found\\.$#',
816
-	'count' => 1,
817
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
815
+    'message' => '#^Instantiated class Twig\\\\Environment not found\\.$#',
816
+    'count' => 1,
817
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
818 818
 ];
819 819
 $ignoreErrors[] = [
820
-	'message' => '#^Instantiated class Twig\\\\Loader\\\\FilesystemLoader not found\\.$#',
821
-	'count' => 1,
822
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
820
+    'message' => '#^Instantiated class Twig\\\\Loader\\\\FilesystemLoader not found\\.$#',
821
+    'count' => 1,
822
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
823 823
 ];
824 824
 $ignoreErrors[] = [
825
-	'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$cache_id$#',
826
-	'count' => 1,
827
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
825
+    'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$cache_id$#',
826
+    'count' => 1,
827
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
828 828
 ];
829 829
 $ignoreErrors[] = [
830
-	'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$compile_id$#',
831
-	'count' => 1,
832
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
830
+    'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$compile_id$#',
831
+    'count' => 1,
832
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
833 833
 ];
834 834
 $ignoreErrors[] = [
835
-	'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$parent$#',
836
-	'count' => 1,
837
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
835
+    'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$parent$#',
836
+    'count' => 1,
837
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
838 838
 ];
839 839
 $ignoreErrors[] = [
840
-	'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$template$#',
841
-	'count' => 1,
842
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
840
+    'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$template$#',
841
+    'count' => 1,
842
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
843 843
 ];
844 844
 $ignoreErrors[] = [
845
-	'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\TwigAdapter\\:\\:\\$engine has unknown class Twig\\\\Environment as its type\\.$#',
846
-	'count' => 1,
847
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
845
+    'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\TwigAdapter\\:\\:\\$engine has unknown class Twig\\\\Environment as its type\\.$#',
846
+    'count' => 1,
847
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
848 848
 ];
849 849
 
850 850
 return ['parameters' => ['ignoreErrors' => $ignoreErrors]];
Please login to merge, or discard this patch.