Passed
Push — main ( 1b5a5a...dfaed8 )
by Dimitri
13:41 queued 09:37
created
src/Router/DefinedRouteCollector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      */
36 36
     public function collect(bool $reset = true): array
37 37
     {
38
-        if (! $reset && $this->cachedRoutes !== []) {
38
+        if (!$reset && $this->cachedRoutes !== []) {
39 39
             return $this->cachedRoutes;
40 40
         }
41 41
 
Please login to merge, or discard this patch.
src/Helpers/assets.php 1 patch
Spacing   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * the LICENSE file that was distributed with this source code.
10 10
  */
11 11
 
12
-if (! function_exists('css_url')) {
12
+if (!function_exists('css_url')) {
13 13
     /**
14 14
      * CSS URL
15 15
      *
@@ -23,17 +23,17 @@  discard block
 block discarded – undo
23 23
         $name = str_replace(site_url() . 'css/', '', htmlspecialchars($name));
24 24
 
25 25
         if (is_localfile($name)) {
26
-            $name .= (! preg_match('#\.css$#i', $name) ? '.css' : '');
26
+            $name .= (!preg_match('#\.css$#i', $name) ? '.css' : '');
27 27
             $filename = WEBROOT . 'css' . DS . $name;
28 28
 
29 29
             return site_url() . 'css/' . $name . ((file_exists($filename)) ? '?v=' . filemtime($filename) : '');
30 30
         }
31 31
 
32
-        return $name . (! preg_match('#\.css$#i', $name) ? '.css' : '');
32
+        return $name . (!preg_match('#\.css$#i', $name) ? '.css' : '');
33 33
     }
34 34
 }
35 35
 
36
-if (! function_exists('js_url')) {
36
+if (!function_exists('js_url')) {
37 37
     /**
38 38
      * JS URL
39 39
      *
@@ -47,17 +47,17 @@  discard block
 block discarded – undo
47 47
         $name = str_replace(site_url() . 'js/', '', htmlspecialchars($name));
48 48
 
49 49
         if (is_localfile($name)) {
50
-            $name .= (! preg_match('#\.js$#i', $name) ? '.js' : '');
50
+            $name .= (!preg_match('#\.js$#i', $name) ? '.js' : '');
51 51
             $filename = WEBROOT . 'js' . DS . $name;
52 52
 
53 53
             return site_url() . 'js/' . $name . ((file_exists($filename)) ? '?v=' . filemtime($filename) : '');
54 54
         }
55 55
 
56
-        return $name . (! preg_match('#\.js$#i', $name) ? '.js' : '');
56
+        return $name . (!preg_match('#\.js$#i', $name) ? '.js' : '');
57 57
     }
58 58
 }
59 59
 
60
-if (! function_exists('lib_css_url')) {
60
+if (!function_exists('lib_css_url')) {
61 61
     /**
62 62
      * LIB CSS URL
63 63
      *
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
         );
77 77
 
78 78
         if (is_localfile($name)) {
79
-            $name .= (! preg_match('#\.css$#i', $name) ? '.css' : '');
79
+            $name .= (!preg_match('#\.css$#i', $name) ? '.css' : '');
80 80
             $paths = ['lib', 'vendor', 'plugins'];
81 81
 
82 82
             foreach ($paths as $path) {
@@ -90,11 +90,11 @@  discard block
 block discarded – undo
90 90
             return $site_url . 'lib/' . $name;
91 91
         }
92 92
 
93
-        return $name . (! preg_match('#\.css$#i', $name) ? '.css' : '');
93
+        return $name . (!preg_match('#\.css$#i', $name) ? '.css' : '');
94 94
     }
95 95
 }
96 96
 
97
-if (! function_exists('lib_js_url')) {
97
+if (!function_exists('lib_js_url')) {
98 98
     /**
99 99
      * LIB JS URL
100 100
      *
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
         );
114 114
 
115 115
         if (is_localfile($name)) {
116
-            $name .= (! preg_match('#\.js$#i', $name) ? '.js' : '');
116
+            $name .= (!preg_match('#\.js$#i', $name) ? '.js' : '');
117 117
             $paths = ['lib', 'vendor', 'plugins'];
118 118
 
119 119
             foreach ($paths as $path) {
@@ -127,11 +127,11 @@  discard block
 block discarded – undo
127 127
             return $site_url . 'lib/' . $name;
128 128
         }
129 129
 
130
-        return $name . (! preg_match('#\.js$#i', $name) ? '.js' : '');
130
+        return $name . (!preg_match('#\.js$#i', $name) ? '.js' : '');
131 131
     }
132 132
 }
133 133
 
134
-if (! function_exists('lib_styles')) {
134
+if (!function_exists('lib_styles')) {
135 135
     /**
136 136
      * LIB_STYLES
137 137
      *
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
 
150 150
         foreach ($name as $style) {
151 151
             if (is_string($style)) {
152
-                $style = (! preg_match('#\.css$#i', $style) ? $style . '.css' : $style);
152
+                $style = (!preg_match('#\.css$#i', $style) ? $style . '.css' : $style);
153 153
                 if (is_file(WEBROOT . 'lib' . DS . str_replace('/', DS, $style))) {
154 154
                     $return[] = '<link rel="preload" type="text/css" href="' . lib_css_url($style) . '" as="style">
155 155
 						<link rel="stylesheet" type="text/css" href="' . lib_css_url($style) . '" />';
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
     }
174 174
 }
175 175
 
176
-if (! function_exists('lib_scripts')) {
176
+if (!function_exists('lib_scripts')) {
177 177
     /**
178 178
      * LIB_SCRIPTS
179 179
      *
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
 
192 192
         foreach ($name as $script) {
193 193
             if (is_string($script)) {
194
-                $script = (! preg_match('#\.js$#i', $script) ? $script . '.js' : $script);
194
+                $script = (!preg_match('#\.js$#i', $script) ? $script . '.js' : $script);
195 195
                 if (is_file(WEBROOT . 'lib' . DS . str_replace('/', DS, $script))) {
196 196
                     $return[] = '<script type="text/javascript" src="' . lib_js_url($script) . '"></script>';
197 197
                 } elseif (is_localfile($script)) {
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
     }
214 214
 }
215 215
 
216
-if (! function_exists('styles')) {
216
+if (!function_exists('styles')) {
217 217
     /**
218 218
      * STYLES
219 219
      *
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
 
232 232
         foreach ($name as $style) {
233 233
             if (is_string($style)) {
234
-                $style = (! preg_match('#\.css$#i', $style) ? $style . '.css' : $style);
234
+                $style = (!preg_match('#\.css$#i', $style) ? $style . '.css' : $style);
235 235
                 if (is_file(WEBROOT . 'css' . DS . str_replace('/', DS, $style))) {
236 236
                     $return[] = '<link rel="preload" type="text/css" href="' . css_url($style) . '" as="style">
237 237
 						<link rel="stylesheet" type="text/css" href="' . css_url($style) . '" />';
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
     }
256 256
 }
257 257
 
258
-if (! function_exists('scripts')) {
258
+if (!function_exists('scripts')) {
259 259
     /**
260 260
      * SCRIPTS
261 261
      *
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
 
274 274
         foreach ($name as $script) {
275 275
             if (is_string($script)) {
276
-                $script = (! preg_match('#\.js$#i', $script) ? $script . '.js' : $script);
276
+                $script = (!preg_match('#\.js$#i', $script) ? $script . '.js' : $script);
277 277
                 if (is_file(WEBROOT . 'js' . DS . str_replace('/', DS, $script))) {
278 278
                     $return[] = '<script type="text/javascript" src="' . js_url($script) . '"></script>';
279 279
                 } elseif (is_localfile($script)) {
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
     }
296 296
 }
297 297
 
298
-if (! function_exists('less_url')) {
298
+if (!function_exists('less_url')) {
299 299
     /**
300 300
      * LESS URL
301 301
      *
@@ -309,17 +309,17 @@  discard block
 block discarded – undo
309 309
         $name = str_replace(site_url() . 'less/', '', htmlspecialchars($name));
310 310
 
311 311
         if (is_localfile($name)) {
312
-            $name .= (! preg_match('#\.less$#i', $name) ? '.less' : '');
312
+            $name .= (!preg_match('#\.less$#i', $name) ? '.less' : '');
313 313
             $filename = WEBROOT . 'less' . DS . $name;
314 314
 
315 315
             return site_url() . 'less/' . $name . ((file_exists($filename)) ? '?v=' . filemtime($filename) : '');
316 316
         }
317 317
 
318
-        return $name . (! preg_match('#\.less$#i', $name) ? '.less' : '');
318
+        return $name . (!preg_match('#\.less$#i', $name) ? '.less' : '');
319 319
     }
320 320
 }
321 321
 
322
-if (! function_exists('less_styles')) {
322
+if (!function_exists('less_styles')) {
323 323
     /**
324 324
      * LESS_STYLES
325 325
      *
@@ -337,7 +337,7 @@  discard block
 block discarded – undo
337 337
 
338 338
         foreach ($name as $style) {
339 339
             if (is_string($style)) {
340
-                $style = (! preg_match('#\.less$#i', $style) ? $style . '.less' : $style);
340
+                $style = (!preg_match('#\.less$#i', $style) ? $style . '.less' : $style);
341 341
                 if (is_file(WEBROOT . 'less' . DS . str_replace('/', DS, $style))) {
342 342
                     $return[] = '<link rel="stylesheet" type="text/less" href="' . less_url($style) . '" />';
343 343
                 } elseif (is_localfile($style)) {
@@ -359,7 +359,7 @@  discard block
 block discarded – undo
359 359
     }
360 360
 }
361 361
 
362
-if (! function_exists('img_url')) {
362
+if (!function_exists('img_url')) {
363 363
     /**
364 364
      * IMG URL
365 365
      *
@@ -386,7 +386,7 @@  discard block
 block discarded – undo
386 386
     }
387 387
 }
388 388
 
389
-if (! function_exists('img')) {
389
+if (!function_exists('img')) {
390 390
     /**
391 391
      * IMG
392 392
      *
@@ -417,7 +417,7 @@  discard block
 block discarded – undo
417 417
     }
418 418
 }
419 419
 
420
-if (! function_exists('docs_url')) {
420
+if (!function_exists('docs_url')) {
421 421
     /**
422 422
      * DOCS URL
423 423
      *
@@ -444,7 +444,7 @@  discard block
 block discarded – undo
444 444
     }
445 445
 }
446 446
 
447
-if (! function_exists('videos_url')) {
447
+if (!function_exists('videos_url')) {
448 448
     /**
449 449
      * VIDEOS URL
450 450
      *
@@ -471,7 +471,7 @@  discard block
 block discarded – undo
471 471
     }
472 472
 }
473 473
 
474
-if (! function_exists('mix')) {
474
+if (!function_exists('mix')) {
475 475
     /**
476 476
      * Obtenez le chemin d'accès à un fichier Mix versionné.
477 477
      *
@@ -496,7 +496,7 @@  discard block
 block discarded – undo
496 496
         if (is_file($publicPath . $manifestDirectory . '/hot')) {
497 497
             $url = rtrim(file_get_contents($publicPath . $manifestDirectory . '/hot'));
498 498
 
499
-            if (! empty($customUrl = $customUrl = $config->hot_proxy_url)) {
499
+            if (!empty($customUrl = $customUrl = $config->hot_proxy_url)) {
500 500
                 return $customUrl . $path;
501 501
             }
502 502
 
@@ -509,8 +509,8 @@  discard block
 block discarded – undo
509 509
 
510 510
         $manifestPath = $publicPath . $manifestDirectory . '/mix-manifest.json';
511 511
 
512
-        if (! isset($manifests[$manifestPath])) {
513
-            if (! is_file($manifestPath)) {
512
+        if (!isset($manifests[$manifestPath])) {
513
+            if (!is_file($manifestPath)) {
514 514
                 throw new Exception('Le manifeste Mix n\'existe pas.');
515 515
             }
516 516
 
@@ -519,10 +519,10 @@  discard block
 block discarded – undo
519 519
 
520 520
         $manifest = $manifests[$manifestPath];
521 521
 
522
-        if (! isset($manifest[$path])) {
522
+        if (!isset($manifest[$path])) {
523 523
             $exception = new Exception("Impossible de localiser le fichier Mix: {$path}.");
524 524
 
525
-            if (! BLITZ_DEBUG) {
525
+            if (!BLITZ_DEBUG) {
526 526
                 return $path;
527 527
             }
528 528
 
Please login to merge, or discard this patch.
src/Event/EventDiscover.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
         foreach ($files as $file) {
36 36
             $className = $this->locator->getClassname($file);
37 37
 
38
-            if ($className === '' || ! class_exists($className) || ! is_a($className, EventListenerInterface::class, true)) {
38
+            if ($className === '' || !class_exists($className) || !is_a($className, EventListenerInterface::class, true)) {
39 39
                 continue;
40 40
             }
41 41
 
Please login to merge, or discard this patch.
src/Cli/Traits/ContentReplacer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,14 +66,14 @@
 block discarded – undo
66 66
 
67 67
         $directory = dirname($path);
68 68
 
69
-        if (! is_dir($directory)) {
69
+        if (!is_dir($directory)) {
70 70
             mkdir($directory, 0o777, true);
71 71
         }
72 72
 
73 73
         if (file_exists($path)) {
74 74
             $overwrite = (bool) $this->option('f');
75 75
 
76
-            if (! $overwrite && ! $this->confirm("Le fichier '{$cleanPath}' existe déjà dans la destination. Le remplacé?")) {
76
+            if (!$overwrite && !$this->confirm("Le fichier '{$cleanPath}' existe déjà dans la destination. Le remplacé?")) {
77 77
                 $this->error("{$cleanPath} sauté. Si vous souhaitez le remplacer, s'il vous plaît utiliser l'option '-f' ou répondre 'y' à l'invite.")->eol();
78 78
 
79 79
                 return;
Please login to merge, or discard this patch.
src/Publisher/Publisher.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
             // Essayez plusieurs fois en cas de mèches persistantes
128 128
             $attempts = 10;
129 129
 
130
-            while ((bool) $attempts && ! delete_files($directory, true, false, true)) {
130
+            while ((bool) $attempts && !delete_files($directory, true, false, true)) {
131 131
                 // @codeCoverageIgnoreStart
132 132
                 $attempts--;
133 133
                 usleep(100000); // .1s
@@ -467,7 +467,7 @@  discard block
 block discarded – undo
467 467
         // Rechercher un fichier existant
468 468
         if (file_exists($to)) {
469 469
             // S'il n'est pas remplacé ou si les fichiers sont identiques, envisagez de réussir
470
-            if (! $replace || same_file($from, $to)) {
470
+            if (!$replace || same_file($from, $to)) {
471 471
                 return;
472 472
             }
473 473
 
@@ -481,7 +481,7 @@  discard block
 block discarded – undo
481 481
         }
482 482
 
483 483
         // Assurez-vous que le répertoire existe
484
-        if (! is_dir($directory = pathinfo($to, PATHINFO_DIRNAME))) {
484
+        if (!is_dir($directory = pathinfo($to, PATHINFO_DIRNAME))) {
485 485
             mkdir($directory, 0o775, true);
486 486
         }
487 487
 
Please login to merge, or discard this patch.
src/Debug/Toolbar/Collectors/ViewsCollector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
     public function getVarData(): array
95 95
     {
96 96
         return [
97
-            'Données de la vues' => array_filter($this->viewer->getData(), static fn ($data) => ! ($data instanceof ErrorBag)),
97
+            'Données de la vues' => array_filter($this->viewer->getData(), static fn ($data) => !($data instanceof ErrorBag)),
98 98
         ];
99 99
     }
100 100
 
Please login to merge, or discard this patch.
src/Cli/Commands/Encryption/GenerateKey.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
         if (in_array($prefix, [null, true], true)) {
60 60
             $prefix = 'hex2bin';
61
-        } elseif (! in_array($prefix, ['hex2bin', 'base64'], true)) {
61
+        } elseif (!in_array($prefix, ['hex2bin', 'base64'], true)) {
62 62
             $prefix = $this->choice('Veuillez utiliser un prefixe validee.', ['hex2bin', 'base64']); // @codeCoverageIgnore
63 63
         }
64 64
 
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
             return;
79 79
         }
80 80
 
81
-        if (! $this->setNewEncryptionKey($encodedKey)) {
81
+        if (!$this->setNewEncryptionKey($encodedKey)) {
82 82
             $this->writer->error('Erreur dans la configuration d\'une nouvelle cle d\'encryption dans le fichier `.env`.', true);
83 83
 
84 84
             return;
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
     {
109 109
         $currentKey = env('encryption.key', '');
110 110
 
111
-        if ($currentKey !== '' && ! $this->confirmOverwrite()) {
111
+        if ($currentKey !== '' && !$this->confirmOverwrite()) {
112 112
             // Pas testable car require une entree au clavier
113 113
             return false; // @codeCoverageIgnore
114 114
         }
@@ -132,8 +132,8 @@  discard block
 block discarded – undo
132 132
         $baseEnv = ROOTPATH . '.env.example';
133 133
         $envFile = ROOTPATH . '.env';
134 134
 
135
-        if (! is_file($envFile)) {
136
-            if (! is_file($baseEnv)) {
135
+        if (!is_file($envFile)) {
136
+            if (!is_file($baseEnv)) {
137 137
                 $this->writer->warn('Le fichier `.env.example` livré par défaut et le fichier `.env` personnalisé sont manquants.');
138 138
                 $this->eol()->write('Voici votre nouvelle clé à la place: ');
139 139
                 $this->writer->warn($key, true);
Please login to merge, or discard this patch.
phpstan-bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,6 +2,6 @@
 block discarded – undo
2 2
 
3 3
 require __DIR__ . '/spec/bootstrap.php';
4 4
 
5
-if (! defined('OCI_COMMIT_ON_SUCCESS')) {
5
+if (!defined('OCI_COMMIT_ON_SUCCESS')) {
6 6
     define('OCI_COMMIT_ON_SUCCESS', 32);
7 7
 }
Please login to merge, or discard this patch.
phpstan-baseline.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 $ignoreErrors = [];
4 4
 $ignoreErrors[] = [
Please login to merge, or discard this patch.
Indentation   +688 added lines, -688 removed lines patch added patch discarded remove patch
@@ -2,1036 +2,1036 @@
 block discarded – undo
2 2
 
3 3
 $ignoreErrors = [];
4 4
 $ignoreErrors[] = [
5
-	// identifier: method.notFound
6
-	'message' => '#^Call to an undefined method BlitzPHP\\\\Traits\\\\Mixins\\\\HigherOrderCollectionProxy\\:\\:__invoke\\(\\)\\.$#',
7
-	'count' => 1,
8
-	'path' => __DIR__ . '/src/Cli/Commands/Utilities/About.php',
5
+    // identifier: method.notFound
6
+    'message' => '#^Call to an undefined method BlitzPHP\\\\Traits\\\\Mixins\\\\HigherOrderCollectionProxy\\:\\:__invoke\\(\\)\\.$#',
7
+    'count' => 1,
8
+    'path' => __DIR__ . '/src/Cli/Commands/Utilities/About.php',
9 9
 ];
10 10
 $ignoreErrors[] = [
11
-	// identifier: method.notFound
12
-	'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:errorBold\\(\\)\\.$#',
13
-	'count' => 1,
14
-	'path' => __DIR__ . '/src/Cli/Console/Command.php',
11
+    // identifier: method.notFound
12
+    'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:errorBold\\(\\)\\.$#',
13
+    'count' => 1,
14
+    'path' => __DIR__ . '/src/Cli/Console/Command.php',
15 15
 ];
16 16
 $ignoreErrors[] = [
17
-	// identifier: method.notFound
18
-	'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:infoBold\\(\\)\\.$#',
19
-	'count' => 1,
20
-	'path' => __DIR__ . '/src/Cli/Console/Command.php',
17
+    // identifier: method.notFound
18
+    'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:infoBold\\(\\)\\.$#',
19
+    'count' => 1,
20
+    'path' => __DIR__ . '/src/Cli/Console/Command.php',
21 21
 ];
22 22
 $ignoreErrors[] = [
23
-	// identifier: method.notFound
24
-	'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:okBold\\(\\)\\.$#',
25
-	'count' => 1,
26
-	'path' => __DIR__ . '/src/Cli/Console/Command.php',
23
+    // identifier: method.notFound
24
+    'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:okBold\\(\\)\\.$#',
25
+    'count' => 1,
26
+    'path' => __DIR__ . '/src/Cli/Console/Command.php',
27 27
 ];
28 28
 $ignoreErrors[] = [
29
-	// identifier: method.notFound
30
-	'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:warnBold\\(\\)\\.$#',
31
-	'count' => 1,
32
-	'path' => __DIR__ . '/src/Cli/Console/Command.php',
29
+    // identifier: method.notFound
30
+    'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:warnBold\\(\\)\\.$#',
31
+    'count' => 1,
32
+    'path' => __DIR__ . '/src/Cli/Console/Command.php',
33 33
 ];
34 34
 $ignoreErrors[] = [
35
-	// identifier: arguments.count
36
-	'message' => '#^Method Ahc\\\\Cli\\\\IO\\\\Interactor\\:\\:choice\\(\\) invoked with 4 parameters, 1\\-2 required\\.$#',
37
-	'count' => 1,
38
-	'path' => __DIR__ . '/src/Cli/Console/Command.php',
35
+    // identifier: arguments.count
36
+    'message' => '#^Method Ahc\\\\Cli\\\\IO\\\\Interactor\\:\\:choice\\(\\) invoked with 4 parameters, 1\\-2 required\\.$#',
37
+    'count' => 1,
38
+    'path' => __DIR__ . '/src/Cli/Console/Command.php',
39 39
 ];
40 40
 $ignoreErrors[] = [
41
-	// identifier: property.notFound
42
-	'message' => '#^Access to an undefined property Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:\\$bold\\.$#',
43
-	'count' => 1,
44
-	'path' => __DIR__ . '/src/Cli/Console/Console.php',
41
+    // identifier: property.notFound
42
+    'message' => '#^Access to an undefined property Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:\\$bold\\.$#',
43
+    'count' => 1,
44
+    'path' => __DIR__ . '/src/Cli/Console/Console.php',
45 45
 ];
46 46
 $ignoreErrors[] = [
47
-	// identifier: method.notFound
48
-	'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Application\\|Ahc\\\\Cli\\\\IO\\\\Interactor\\:\\:write\\(\\)\\.$#',
49
-	'count' => 1,
50
-	'path' => __DIR__ . '/src/Cli/Console/Console.php',
47
+    // identifier: method.notFound
48
+    'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Application\\|Ahc\\\\Cli\\\\IO\\\\Interactor\\:\\:write\\(\\)\\.$#',
49
+    'count' => 1,
50
+    'path' => __DIR__ . '/src/Cli/Console/Console.php',
51 51
 ];
52 52
 $ignoreErrors[] = [
53
-	// identifier: method.notFound
54
-	'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\IO\\\\Interactor\\:\\:write\\(\\)\\.$#',
55
-	'count' => 1,
56
-	'path' => __DIR__ . '/src/Cli/Console/Console.php',
53
+    // identifier: method.notFound
54
+    'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\IO\\\\Interactor\\:\\:write\\(\\)\\.$#',
55
+    'count' => 1,
56
+    'path' => __DIR__ . '/src/Cli/Console/Console.php',
57 57
 ];
58 58
 $ignoreErrors[] = [
59
-	// identifier: staticMethod.notFound
60
-	'message' => '#^Call to an undefined static method Nette\\\\Schema\\\\Expect\\:\\:closure\\(\\)\\.$#',
61
-	'count' => 1,
62
-	'path' => __DIR__ . '/src/Constants/schemas/middlewares.config.php',
59
+    // identifier: staticMethod.notFound
60
+    'message' => '#^Call to an undefined static method Nette\\\\Schema\\\\Expect\\:\\:closure\\(\\)\\.$#',
61
+    'count' => 1,
62
+    'path' => __DIR__ . '/src/Constants/schemas/middlewares.config.php',
63 63
 ];
64 64
 $ignoreErrors[] = [
65
-	// identifier: method.templateTypeNotInParameter
66
-	'message' => '#^Template type T of method BlitzPHP\\\\Container\\\\Container\\:\\:make\\(\\) is not referenced in a parameter\\.$#',
67
-	'count' => 1,
68
-	'path' => __DIR__ . '/src/Container/Container.php',
65
+    // identifier: method.templateTypeNotInParameter
66
+    'message' => '#^Template type T of method BlitzPHP\\\\Container\\\\Container\\:\\:make\\(\\) is not referenced in a parameter\\.$#',
67
+    'count' => 1,
68
+    'path' => __DIR__ . '/src/Container/Container.php',
69 69
 ];
70 70
 $ignoreErrors[] = [
71
-	// identifier: property.notFound
72
-	'message' => '#^Access to an undefined property mindplay\\\\annotations\\\\IAnnotation\\:\\:\\$method\\.$#',
73
-	'count' => 1,
74
-	'path' => __DIR__ . '/src/Controllers/RestController.php',
71
+    // identifier: property.notFound
72
+    'message' => '#^Access to an undefined property mindplay\\\\annotations\\\\IAnnotation\\:\\:\\$method\\.$#',
73
+    'count' => 1,
74
+    'path' => __DIR__ . '/src/Controllers/RestController.php',
75 75
 ];
76 76
 $ignoreErrors[] = [
77
-	// identifier: class.notFound
78
-	'message' => '#^Call to static method make\\(\\) on an unknown class Spatie\\\\Ignition\\\\Ignition\\.$#',
79
-	'count' => 1,
80
-	'path' => __DIR__ . '/src/Debug/Debugger.php',
77
+    // identifier: class.notFound
78
+    'message' => '#^Call to static method make\\(\\) on an unknown class Spatie\\\\Ignition\\\\Ignition\\.$#',
79
+    'count' => 1,
80
+    'path' => __DIR__ . '/src/Debug/Debugger.php',
81 81
 ];
82 82
 $ignoreErrors[] = [
83
-	// identifier: booleanNot.alwaysFalse
84
-	'message' => '#^Negated boolean expression is always false\\.$#',
85
-	'count' => 1,
86
-	'path' => __DIR__ . '/src/Debug/Toolbar.php',
83
+    // identifier: booleanNot.alwaysFalse
84
+    'message' => '#^Negated boolean expression is always false\\.$#',
85
+    'count' => 1,
86
+    'path' => __DIR__ . '/src/Debug/Toolbar.php',
87 87
 ];
88 88
 $ignoreErrors[] = [
89
-	// identifier: variable.undefined
90
-	'message' => '#^Variable \\$result might not be defined\\.$#',
91
-	'count' => 1,
92
-	'path' => __DIR__ . '/src/Debug/Toolbar.php',
89
+    // identifier: variable.undefined
90
+    'message' => '#^Variable \\$result might not be defined\\.$#',
91
+    'count' => 1,
92
+    'path' => __DIR__ . '/src/Debug/Toolbar.php',
93 93
 ];
94 94
 $ignoreErrors[] = [
95
-	// identifier: booleanOr.leftAlwaysTrue
96
-	'message' => '#^Left side of \\|\\| is always true\\.$#',
97
-	'count' => 1,
98
-	'path' => __DIR__ . '/src/Event/EventManager.php',
95
+    // identifier: booleanOr.leftAlwaysTrue
96
+    'message' => '#^Left side of \\|\\| is always true\\.$#',
97
+    'count' => 1,
98
+    'path' => __DIR__ . '/src/Event/EventManager.php',
99 99
 ];
100 100
 $ignoreErrors[] = [
101
-	// identifier: phpDoc.parseError
102
-	'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$#',
103
-	'count' => 1,
104
-	'path' => __DIR__ . '/src/Facades/Route.php',
101
+    // identifier: phpDoc.parseError
102
+    '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$#',
103
+    'count' => 1,
104
+    'path' => __DIR__ . '/src/Facades/Route.php',
105 105
 ];
106 106
 $ignoreErrors[] = [
107
-	// identifier: booleanNot.alwaysFalse
108
-	'message' => '#^Negated boolean expression is always false\\.$#',
109
-	'count' => 1,
110
-	'path' => __DIR__ . '/src/Helpers/assets.php',
107
+    // identifier: booleanNot.alwaysFalse
108
+    'message' => '#^Negated boolean expression is always false\\.$#',
109
+    'count' => 1,
110
+    'path' => __DIR__ . '/src/Helpers/assets.php',
111 111
 ];
112 112
 $ignoreErrors[] = [
113
-	// identifier: method.nonObject
114
-	'message' => '#^Cannot call method regenerate\\(\\) on array\\|bool\\|float\\|int\\|object\\|string\\.$#',
115
-	'count' => 1,
116
-	'path' => __DIR__ . '/src/Helpers/common.php',
113
+    // identifier: method.nonObject
114
+    'message' => '#^Cannot call method regenerate\\(\\) on array\\|bool\\|float\\|int\\|object\\|string\\.$#',
115
+    'count' => 1,
116
+    'path' => __DIR__ . '/src/Helpers/common.php',
117 117
 ];
118 118
 $ignoreErrors[] = [
119
-	// identifier: method.nonObject
120
-	'message' => '#^Cannot call method token\\(\\) on array\\|bool\\|float\\|int\\|object\\|string\\.$#',
121
-	'count' => 1,
122
-	'path' => __DIR__ . '/src/Helpers/common.php',
119
+    // identifier: method.nonObject
120
+    'message' => '#^Cannot call method token\\(\\) on array\\|bool\\|float\\|int\\|object\\|string\\.$#',
121
+    'count' => 1,
122
+    'path' => __DIR__ . '/src/Helpers/common.php',
123 123
 ];
124 124
 $ignoreErrors[] = [
125
-	// identifier: variable.undefined
126
-	'message' => '#^Variable \\$result might not be defined\\.$#',
127
-	'count' => 1,
128
-	'path' => __DIR__ . '/src/Helpers/filesystem.php',
125
+    // identifier: variable.undefined
126
+    'message' => '#^Variable \\$result might not be defined\\.$#',
127
+    'count' => 1,
128
+    'path' => __DIR__ . '/src/Helpers/filesystem.php',
129 129
 ];
130 130
 $ignoreErrors[] = [
131
-	// identifier: method.notFound
132
-	'message' => '#^Call to an undefined method BlitzPHP\\\\Http\\\\Request\\:\\:getFormat\\(\\)\\.$#',
133
-	'count' => 1,
134
-	'path' => __DIR__ . '/src/Http/Request.php',
131
+    // identifier: method.notFound
132
+    'message' => '#^Call to an undefined method BlitzPHP\\\\Http\\\\Request\\:\\:getFormat\\(\\)\\.$#',
133
+    'count' => 1,
134
+    'path' => __DIR__ . '/src/Http/Request.php',
135 135
 ];
136 136
 $ignoreErrors[] = [
137
-	// identifier: method.notFound
138
-	'message' => '#^Call to an undefined method BlitzPHP\\\\Http\\\\Request\\:\\:getMimeType\\(\\)\\.$#',
139
-	'count' => 1,
140
-	'path' => __DIR__ . '/src/Http/Request.php',
137
+    // identifier: method.notFound
138
+    'message' => '#^Call to an undefined method BlitzPHP\\\\Http\\\\Request\\:\\:getMimeType\\(\\)\\.$#',
139
+    'count' => 1,
140
+    'path' => __DIR__ . '/src/Http/Request.php',
141 141
 ];
142 142
 $ignoreErrors[] = [
143
-	// identifier: return.type
144
-	'message' => '#^Method BlitzPHP\\\\Http\\\\Request\\:\\:validation\\(\\) should return BlitzPHP\\\\Validation\\\\Validation but returns Dimtrovich\\\\Validation\\\\Validation\\.$#',
145
-	'count' => 1,
146
-	'path' => __DIR__ . '/src/Http/Request.php',
143
+    // identifier: return.type
144
+    'message' => '#^Method BlitzPHP\\\\Http\\\\Request\\:\\:validation\\(\\) should return BlitzPHP\\\\Validation\\\\Validation but returns Dimtrovich\\\\Validation\\\\Validation\\.$#',
145
+    'count' => 1,
146
+    'path' => __DIR__ . '/src/Http/Request.php',
147 147
 ];
148 148
 $ignoreErrors[] = [
149
-	// identifier: class.notFound
150
-	'message' => '#^Parameter \\$default of method BlitzPHP\\\\Http\\\\Request\\:\\:old\\(\\) has invalid type BlitzPHP\\\\Wolke\\\\Model\\.$#',
151
-	'count' => 1,
152
-	'path' => __DIR__ . '/src/Http/Request.php',
149
+    // identifier: class.notFound
150
+    'message' => '#^Parameter \\$default of method BlitzPHP\\\\Http\\\\Request\\:\\:old\\(\\) has invalid type BlitzPHP\\\\Wolke\\\\Model\\.$#',
151
+    'count' => 1,
152
+    'path' => __DIR__ . '/src/Http/Request.php',
153 153
 ];
154 154
 $ignoreErrors[] = [
155
-	// identifier: notIdentical.alwaysTrue
156
-	'message' => '#^Strict comparison using \\!\\=\\= between null and BlitzPHP\\\\Session\\\\Store will always evaluate to true\\.$#',
157
-	'count' => 1,
158
-	'path' => __DIR__ . '/src/Http/Request.php',
155
+    // identifier: notIdentical.alwaysTrue
156
+    'message' => '#^Strict comparison using \\!\\=\\= between null and BlitzPHP\\\\Session\\\\Store will always evaluate to true\\.$#',
157
+    'count' => 1,
158
+    'path' => __DIR__ . '/src/Http/Request.php',
159 159
 ];
160 160
 $ignoreErrors[] = [
161
-	// identifier: method.notFound
162
-	'message' => '#^Call to an undefined method DateTimeInterface\\:\\:setTimezone\\(\\)\\.$#',
163
-	'count' => 1,
164
-	'path' => __DIR__ . '/src/Http/Response.php',
161
+    // identifier: method.notFound
162
+    'message' => '#^Call to an undefined method DateTimeInterface\\:\\:setTimezone\\(\\)\\.$#',
163
+    'count' => 1,
164
+    'path' => __DIR__ . '/src/Http/Response.php',
165 165
 ];
166 166
 $ignoreErrors[] = [
167
-	// identifier: class.notFound
168
-	'message' => '#^Access to constant DEBUG_SERVER on an unknown class PHPMailer\\\\PHPMailer\\\\SMTP\\.$#',
169
-	'count' => 1,
170
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
167
+    // identifier: class.notFound
168
+    'message' => '#^Access to constant DEBUG_SERVER on an unknown class PHPMailer\\\\PHPMailer\\\\SMTP\\.$#',
169
+    'count' => 1,
170
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
171 171
 ];
172 172
 $ignoreErrors[] = [
173
-	// identifier: class.notFound
174
-	'message' => '#^Access to property \\$AltBody on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
175
-	'count' => 2,
176
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
173
+    // identifier: class.notFound
174
+    'message' => '#^Access to property \\$AltBody on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
175
+    'count' => 2,
176
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
177 177
 ];
178 178
 $ignoreErrors[] = [
179
-	// identifier: class.notFound
180
-	'message' => '#^Access to property \\$Body on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
181
-	'count' => 2,
182
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
179
+    // identifier: class.notFound
180
+    'message' => '#^Access to property \\$Body on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
181
+    'count' => 2,
182
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
183 183
 ];
184 184
 $ignoreErrors[] = [
185
-	// identifier: class.notFound
186
-	'message' => '#^Access to property \\$CharSet on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
187
-	'count' => 2,
188
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
185
+    // identifier: class.notFound
186
+    'message' => '#^Access to property \\$CharSet on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
187
+    'count' => 2,
188
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
189 189
 ];
190 190
 $ignoreErrors[] = [
191
-	// identifier: class.notFound
192
-	'message' => '#^Access to property \\$DKIM_domain on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
193
-	'count' => 2,
194
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
191
+    // identifier: class.notFound
192
+    'message' => '#^Access to property \\$DKIM_domain on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
193
+    'count' => 2,
194
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
195 195
 ];
196 196
 $ignoreErrors[] = [
197
-	// identifier: class.notFound
198
-	'message' => '#^Access to property \\$DKIM_identity on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
199
-	'count' => 2,
200
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
197
+    // identifier: class.notFound
198
+    'message' => '#^Access to property \\$DKIM_identity on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
199
+    'count' => 2,
200
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
201 201
 ];
202 202
 $ignoreErrors[] = [
203
-	// identifier: class.notFound
204
-	'message' => '#^Access to property \\$DKIM_passphrase on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
205
-	'count' => 2,
206
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
203
+    // identifier: class.notFound
204
+    'message' => '#^Access to property \\$DKIM_passphrase on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
205
+    'count' => 2,
206
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
207 207
 ];
208 208
 $ignoreErrors[] = [
209
-	// identifier: class.notFound
210
-	'message' => '#^Access to property \\$DKIM_private on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
211
-	'count' => 2,
212
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
209
+    // identifier: class.notFound
210
+    'message' => '#^Access to property \\$DKIM_private on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
211
+    'count' => 2,
212
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
213 213
 ];
214 214
 $ignoreErrors[] = [
215
-	// identifier: class.notFound
216
-	'message' => '#^Access to property \\$DKIM_selector on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
217
-	'count' => 2,
218
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
215
+    // identifier: class.notFound
216
+    'message' => '#^Access to property \\$DKIM_selector on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
217
+    'count' => 2,
218
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
219 219
 ];
220 220
 $ignoreErrors[] = [
221
-	// identifier: class.notFound
222
-	'message' => '#^Access to property \\$Debugoutput on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
223
-	'count' => 2,
224
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
221
+    // identifier: class.notFound
222
+    'message' => '#^Access to property \\$Debugoutput on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
223
+    'count' => 2,
224
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
225 225
 ];
226 226
 $ignoreErrors[] = [
227
-	// identifier: class.notFound
228
-	'message' => '#^Access to property \\$From on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
229
-	'count' => 1,
230
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
227
+    // identifier: class.notFound
228
+    'message' => '#^Access to property \\$From on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
229
+    'count' => 1,
230
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
231 231
 ];
232 232
 $ignoreErrors[] = [
233
-	// identifier: class.notFound
234
-	'message' => '#^Access to property \\$Host on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
235
-	'count' => 2,
236
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
233
+    // identifier: class.notFound
234
+    'message' => '#^Access to property \\$Host on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
235
+    'count' => 2,
236
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
237 237
 ];
238 238
 $ignoreErrors[] = [
239
-	// identifier: class.notFound
240
-	'message' => '#^Access to property \\$Password on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
241
-	'count' => 2,
242
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
239
+    // identifier: class.notFound
240
+    'message' => '#^Access to property \\$Password on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
241
+    'count' => 2,
242
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
243 243
 ];
244 244
 $ignoreErrors[] = [
245
-	// identifier: class.notFound
246
-	'message' => '#^Access to property \\$Port on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
247
-	'count' => 2,
248
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
245
+    // identifier: class.notFound
246
+    'message' => '#^Access to property \\$Port on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
247
+    'count' => 2,
248
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
249 249
 ];
250 250
 $ignoreErrors[] = [
251
-	// identifier: class.notFound
252
-	'message' => '#^Access to property \\$Priority on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
253
-	'count' => 2,
254
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
251
+    // identifier: class.notFound
252
+    'message' => '#^Access to property \\$Priority on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
253
+    'count' => 2,
254
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
255 255
 ];
256 256
 $ignoreErrors[] = [
257
-	// identifier: class.notFound
258
-	'message' => '#^Access to property \\$SMTPAuth on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
259
-	'count' => 2,
260
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
257
+    // identifier: class.notFound
258
+    'message' => '#^Access to property \\$SMTPAuth on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
259
+    'count' => 2,
260
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
261 261
 ];
262 262
 $ignoreErrors[] = [
263
-	// identifier: class.notFound
264
-	'message' => '#^Access to property \\$SMTPDebug on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
265
-	'count' => 2,
266
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
263
+    // identifier: class.notFound
264
+    'message' => '#^Access to property \\$SMTPDebug on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
265
+    'count' => 2,
266
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
267 267
 ];
268 268
 $ignoreErrors[] = [
269
-	// identifier: class.notFound
270
-	'message' => '#^Access to property \\$SMTPSecure on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
271
-	'count' => 2,
272
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
269
+    // identifier: class.notFound
270
+    'message' => '#^Access to property \\$SMTPSecure on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
271
+    'count' => 2,
272
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
273 273
 ];
274 274
 $ignoreErrors[] = [
275
-	// identifier: class.notFound
276
-	'message' => '#^Access to property \\$Subject on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
277
-	'count' => 2,
278
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
275
+    // identifier: class.notFound
276
+    'message' => '#^Access to property \\$Subject on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
277
+    'count' => 2,
278
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
279 279
 ];
280 280
 $ignoreErrors[] = [
281
-	// identifier: class.notFound
282
-	'message' => '#^Access to property \\$Timeout on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
283
-	'count' => 2,
284
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
281
+    // identifier: class.notFound
282
+    'message' => '#^Access to property \\$Timeout on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
283
+    'count' => 2,
284
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
285 285
 ];
286 286
 $ignoreErrors[] = [
287
-	// identifier: class.notFound
288
-	'message' => '#^Access to property \\$Username on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
289
-	'count' => 2,
290
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
287
+    // identifier: class.notFound
288
+    'message' => '#^Access to property \\$Username on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
289
+    'count' => 2,
290
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
291 291
 ];
292 292
 $ignoreErrors[] = [
293
-	// identifier: class.notFound
294
-	'message' => '#^Call to method addAddress\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
295
-	'count' => 1,
296
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
293
+    // identifier: class.notFound
294
+    'message' => '#^Call to method addAddress\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
295
+    'count' => 1,
296
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
297 297
 ];
298 298
 $ignoreErrors[] = [
299
-	// identifier: class.notFound
300
-	'message' => '#^Call to method addAttachment\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
301
-	'count' => 1,
302
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
299
+    // identifier: class.notFound
300
+    'message' => '#^Call to method addAttachment\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
301
+    'count' => 1,
302
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
303 303
 ];
304 304
 $ignoreErrors[] = [
305
-	// identifier: class.notFound
306
-	'message' => '#^Call to method addBCC\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
307
-	'count' => 1,
308
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
305
+    // identifier: class.notFound
306
+    'message' => '#^Call to method addBCC\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
307
+    'count' => 1,
308
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
309 309
 ];
310 310
 $ignoreErrors[] = [
311
-	// identifier: class.notFound
312
-	'message' => '#^Call to method addCC\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
313
-	'count' => 1,
314
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
311
+    // identifier: class.notFound
312
+    'message' => '#^Call to method addCC\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
313
+    'count' => 1,
314
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
315 315
 ];
316 316
 $ignoreErrors[] = [
317
-	// identifier: class.notFound
318
-	'message' => '#^Call to method addCustomHeader\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
319
-	'count' => 1,
320
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
317
+    // identifier: class.notFound
318
+    'message' => '#^Call to method addCustomHeader\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
319
+    'count' => 1,
320
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
321 321
 ];
322 322
 $ignoreErrors[] = [
323
-	// identifier: class.notFound
324
-	'message' => '#^Call to method addEmbeddedImage\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
325
-	'count' => 1,
326
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
323
+    // identifier: class.notFound
324
+    'message' => '#^Call to method addEmbeddedImage\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
325
+    'count' => 1,
326
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
327 327
 ];
328 328
 $ignoreErrors[] = [
329
-	// identifier: class.notFound
330
-	'message' => '#^Call to method addReplyTo\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
331
-	'count' => 1,
332
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
329
+    // identifier: class.notFound
330
+    'message' => '#^Call to method addReplyTo\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
331
+    'count' => 1,
332
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
333 333
 ];
334 334
 $ignoreErrors[] = [
335
-	// identifier: class.notFound
336
-	'message' => '#^Call to method addStringAttachment\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
337
-	'count' => 1,
338
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
335
+    // identifier: class.notFound
336
+    'message' => '#^Call to method addStringAttachment\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
337
+    'count' => 1,
338
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
339 339
 ];
340 340
 $ignoreErrors[] = [
341
-	// identifier: class.notFound
342
-	'message' => '#^Call to method addStringEmbeddedImage\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
343
-	'count' => 1,
344
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
341
+    // identifier: class.notFound
342
+    'message' => '#^Call to method addStringEmbeddedImage\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
343
+    'count' => 1,
344
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
345 345
 ];
346 346
 $ignoreErrors[] = [
347
-	// identifier: class.notFound
348
-	'message' => '#^Call to method clearAddresses\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
349
-	'count' => 2,
350
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
347
+    // identifier: class.notFound
348
+    'message' => '#^Call to method clearAddresses\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
349
+    'count' => 2,
350
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
351 351
 ];
352 352
 $ignoreErrors[] = [
353
-	// identifier: class.notFound
354
-	'message' => '#^Call to method clearAllRecipients\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
355
-	'count' => 1,
356
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
353
+    // identifier: class.notFound
354
+    'message' => '#^Call to method clearAllRecipients\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
355
+    'count' => 1,
356
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
357 357
 ];
358 358
 $ignoreErrors[] = [
359
-	// identifier: class.notFound
360
-	'message' => '#^Call to method clearAttachments\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
361
-	'count' => 1,
362
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
359
+    // identifier: class.notFound
360
+    'message' => '#^Call to method clearAttachments\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
361
+    'count' => 1,
362
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
363 363
 ];
364 364
 $ignoreErrors[] = [
365
-	// identifier: class.notFound
366
-	'message' => '#^Call to method clearBCCs\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
367
-	'count' => 2,
368
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
365
+    // identifier: class.notFound
366
+    'message' => '#^Call to method clearBCCs\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
367
+    'count' => 2,
368
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
369 369
 ];
370 370
 $ignoreErrors[] = [
371
-	// identifier: class.notFound
372
-	'message' => '#^Call to method clearCCs\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
373
-	'count' => 2,
374
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
371
+    // identifier: class.notFound
372
+    'message' => '#^Call to method clearCCs\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
373
+    'count' => 2,
374
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
375 375
 ];
376 376
 $ignoreErrors[] = [
377
-	// identifier: class.notFound
378
-	'message' => '#^Call to method clearCustomHeaders\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
379
-	'count' => 1,
380
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
377
+    // identifier: class.notFound
378
+    'message' => '#^Call to method clearCustomHeaders\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
379
+    'count' => 1,
380
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
381 381
 ];
382 382
 $ignoreErrors[] = [
383
-	// identifier: class.notFound
384
-	'message' => '#^Call to method clearReplyTos\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
385
-	'count' => 2,
386
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
383
+    // identifier: class.notFound
384
+    'message' => '#^Call to method clearReplyTos\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
385
+    'count' => 2,
386
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
387 387
 ];
388 388
 $ignoreErrors[] = [
389
-	// identifier: class.notFound
390
-	'message' => '#^Call to method getLastMessageID\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
391
-	'count' => 1,
392
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
389
+    // identifier: class.notFound
390
+    'message' => '#^Call to method getLastMessageID\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
391
+    'count' => 1,
392
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
393 393
 ];
394 394
 $ignoreErrors[] = [
395
-	// identifier: class.notFound
396
-	'message' => '#^Call to method isHTML\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
397
-	'count' => 2,
398
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
395
+    // identifier: class.notFound
396
+    'message' => '#^Call to method isHTML\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
397
+    'count' => 2,
398
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
399 399
 ];
400 400
 $ignoreErrors[] = [
401
-	// identifier: class.notFound
402
-	'message' => '#^Call to method isMail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
403
-	'count' => 1,
404
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
401
+    // identifier: class.notFound
402
+    'message' => '#^Call to method isMail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
403
+    'count' => 1,
404
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
405 405
 ];
406 406
 $ignoreErrors[] = [
407
-	// identifier: class.notFound
408
-	'message' => '#^Call to method isQmail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
409
-	'count' => 1,
410
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
407
+    // identifier: class.notFound
408
+    'message' => '#^Call to method isQmail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
409
+    'count' => 1,
410
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
411 411
 ];
412 412
 $ignoreErrors[] = [
413
-	// identifier: class.notFound
414
-	'message' => '#^Call to method isSMTP\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
415
-	'count' => 1,
416
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
413
+    // identifier: class.notFound
414
+    'message' => '#^Call to method isSMTP\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
415
+    'count' => 1,
416
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
417 417
 ];
418 418
 $ignoreErrors[] = [
419
-	// identifier: class.notFound
420
-	'message' => '#^Call to method isSendmail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
421
-	'count' => 1,
422
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
419
+    // identifier: class.notFound
420
+    'message' => '#^Call to method isSendmail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
421
+    'count' => 1,
422
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
423 423
 ];
424 424
 $ignoreErrors[] = [
425
-	// identifier: class.notFound
426
-	'message' => '#^Call to method send\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
427
-	'count' => 1,
428
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
425
+    // identifier: class.notFound
426
+    'message' => '#^Call to method send\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
427
+    'count' => 1,
428
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
429 429
 ];
430 430
 $ignoreErrors[] = [
431
-	// identifier: class.notFound
432
-	'message' => '#^Call to method setFrom\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
433
-	'count' => 1,
434
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
431
+    // identifier: class.notFound
432
+    'message' => '#^Call to method setFrom\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
433
+    'count' => 1,
434
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
435 435
 ];
436 436
 $ignoreErrors[] = [
437
-	// identifier: class.notFound
438
-	'message' => '#^Call to method sign\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
439
-	'count' => 1,
440
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
437
+    // identifier: class.notFound
438
+    'message' => '#^Call to method sign\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
439
+    'count' => 1,
440
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
441 441
 ];
442 442
 $ignoreErrors[] = [
443
-	// identifier: class.notFound
444
-	'message' => '#^Class PHPMailer\\\\PHPMailer\\\\PHPMailer not found\\.$#',
445
-	'count' => 1,
446
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
443
+    // identifier: class.notFound
444
+    'message' => '#^Class PHPMailer\\\\PHPMailer\\\\PHPMailer not found\\.$#',
445
+    'count' => 1,
446
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
447 447
 ];
448 448
 $ignoreErrors[] = [
449
-	// identifier: class.notFound
450
-	'message' => '#^Instantiated class PHPMailer\\\\PHPMailer\\\\PHPMailer not found\\.$#',
451
-	'count' => 1,
452
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
449
+    // identifier: class.notFound
450
+    'message' => '#^Instantiated class PHPMailer\\\\PHPMailer\\\\PHPMailer not found\\.$#',
451
+    'count' => 1,
452
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
453 453
 ];
454 454
 $ignoreErrors[] = [
455
-	// identifier: throws.notThrowable
456
-	'message' => '#^PHPDoc tag @throws with type PHPMailer\\\\PHPMailer\\\\Exception is not subtype of Throwable$#',
457
-	'count' => 11,
458
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
455
+    // identifier: throws.notThrowable
456
+    'message' => '#^PHPDoc tag @throws with type PHPMailer\\\\PHPMailer\\\\Exception is not subtype of Throwable$#',
457
+    'count' => 11,
458
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
459 459
 ];
460 460
 $ignoreErrors[] = [
461
-	// identifier: class.notFound
462
-	'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\PHPMailer\\:\\:\\$mailer has unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer as its type\\.$#',
463
-	'count' => 1,
464
-	'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
461
+    // identifier: class.notFound
462
+    'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\PHPMailer\\:\\:\\$mailer has unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer as its type\\.$#',
463
+    'count' => 1,
464
+    'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
465 465
 ];
466 466
 $ignoreErrors[] = [
467
-	// identifier: class.notFound
468
-	'message' => '#^Call to method addBcc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
469
-	'count' => 1,
470
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
467
+    // identifier: class.notFound
468
+    'message' => '#^Call to method addBcc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
469
+    'count' => 1,
470
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
471 471
 ];
472 472
 $ignoreErrors[] = [
473
-	// identifier: class.notFound
474
-	'message' => '#^Call to method addCC\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
475
-	'count' => 1,
476
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
473
+    // identifier: class.notFound
474
+    'message' => '#^Call to method addCC\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
475
+    'count' => 1,
476
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
477 477
 ];
478 478
 $ignoreErrors[] = [
479
-	// identifier: class.notFound
480
-	'message' => '#^Call to method addPart\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
481
-	'count' => 4,
482
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
479
+    // identifier: class.notFound
480
+    'message' => '#^Call to method addPart\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
481
+    'count' => 4,
482
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
483 483
 ];
484 484
 $ignoreErrors[] = [
485
-	// identifier: class.notFound
486
-	'message' => '#^Call to method addReplyTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
487
-	'count' => 1,
488
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
485
+    // identifier: class.notFound
486
+    'message' => '#^Call to method addReplyTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
487
+    'count' => 1,
488
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
489 489
 ];
490 490
 $ignoreErrors[] = [
491
-	// identifier: class.notFound
492
-	'message' => '#^Call to method addTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
493
-	'count' => 1,
494
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
491
+    // identifier: class.notFound
492
+    'message' => '#^Call to method addTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
493
+    'count' => 1,
494
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
495 495
 ];
496 496
 $ignoreErrors[] = [
497
-	// identifier: class.notFound
498
-	'message' => '#^Call to method asInline\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Part\\\\DataPart\\.$#',
499
-	'count' => 2,
500
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
497
+    // identifier: class.notFound
498
+    'message' => '#^Call to method asInline\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Part\\\\DataPart\\.$#',
499
+    'count' => 2,
500
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
501 501
 ];
502 502
 $ignoreErrors[] = [
503
-	// identifier: class.notFound
504
-	'message' => '#^Call to method bcc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
505
-	'count' => 1,
506
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
503
+    // identifier: class.notFound
504
+    'message' => '#^Call to method bcc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
505
+    'count' => 1,
506
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
507 507
 ];
508 508
 $ignoreErrors[] = [
509
-	// identifier: class.notFound
510
-	'message' => '#^Call to method cc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
511
-	'count' => 1,
512
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
509
+    // identifier: class.notFound
510
+    'message' => '#^Call to method cc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
511
+    'count' => 1,
512
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
513 513
 ];
514 514
 $ignoreErrors[] = [
515
-	// identifier: class.notFound
516
-	'message' => '#^Call to method from\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
517
-	'count' => 1,
518
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
515
+    // identifier: class.notFound
516
+    'message' => '#^Call to method from\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
517
+    'count' => 1,
518
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
519 519
 ];
520 520
 $ignoreErrors[] = [
521
-	// identifier: class.notFound
522
-	'message' => '#^Call to method generateMessageId\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
523
-	'count' => 1,
524
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
521
+    // identifier: class.notFound
522
+    'message' => '#^Call to method generateMessageId\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
523
+    'count' => 1,
524
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
525 525
 ];
526 526
 $ignoreErrors[] = [
527
-	// identifier: class.notFound
528
-	'message' => '#^Call to method getHeaders\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
529
-	'count' => 1,
530
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
527
+    // identifier: class.notFound
528
+    'message' => '#^Call to method getHeaders\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
529
+    'count' => 1,
530
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
531 531
 ];
532 532
 $ignoreErrors[] = [
533
-	// identifier: class.notFound
534
-	'message' => '#^Call to method html\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
535
-	'count' => 1,
536
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
533
+    // identifier: class.notFound
534
+    'message' => '#^Call to method html\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
535
+    'count' => 1,
536
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
537 537
 ];
538 538
 $ignoreErrors[] = [
539
-	// identifier: class.notFound
540
-	'message' => '#^Call to method priority\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
541
-	'count' => 1,
542
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
539
+    // identifier: class.notFound
540
+    'message' => '#^Call to method priority\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
541
+    'count' => 1,
542
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
543 543
 ];
544 544
 $ignoreErrors[] = [
545
-	// identifier: class.notFound
546
-	'message' => '#^Call to method replyTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
547
-	'count' => 1,
548
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
545
+    // identifier: class.notFound
546
+    'message' => '#^Call to method replyTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
547
+    'count' => 1,
548
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
549 549
 ];
550 550
 $ignoreErrors[] = [
551
-	// identifier: class.notFound
552
-	'message' => '#^Call to method send\\(\\) on an unknown class Symfony\\\\Component\\\\Mailer\\\\Mailer\\.$#',
553
-	'count' => 1,
554
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
551
+    // identifier: class.notFound
552
+    'message' => '#^Call to method send\\(\\) on an unknown class Symfony\\\\Component\\\\Mailer\\\\Mailer\\.$#',
553
+    'count' => 1,
554
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
555 555
 ];
556 556
 $ignoreErrors[] = [
557
-	// identifier: class.notFound
558
-	'message' => '#^Call to method sign\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\DkimSigner\\.$#',
559
-	'count' => 1,
560
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
557
+    // identifier: class.notFound
558
+    'message' => '#^Call to method sign\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\DkimSigner\\.$#',
559
+    'count' => 1,
560
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
561 561
 ];
562 562
 $ignoreErrors[] = [
563
-	// identifier: class.notFound
564
-	'message' => '#^Call to method sign\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\SMimeSigner\\.$#',
565
-	'count' => 1,
566
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
563
+    // identifier: class.notFound
564
+    'message' => '#^Call to method sign\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\SMimeSigner\\.$#',
565
+    'count' => 1,
566
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
567 567
 ];
568 568
 $ignoreErrors[] = [
569
-	// identifier: class.notFound
570
-	'message' => '#^Call to method subject\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
571
-	'count' => 1,
572
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
569
+    // identifier: class.notFound
570
+    'message' => '#^Call to method subject\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
571
+    'count' => 1,
572
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
573 573
 ];
574 574
 $ignoreErrors[] = [
575
-	// identifier: class.notFound
576
-	'message' => '#^Call to method text\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
577
-	'count' => 1,
578
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
575
+    // identifier: class.notFound
576
+    'message' => '#^Call to method text\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
577
+    'count' => 1,
578
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
579 579
 ];
580 580
 $ignoreErrors[] = [
581
-	// identifier: class.notFound
582
-	'message' => '#^Call to method to\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
583
-	'count' => 1,
584
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
581
+    // identifier: class.notFound
582
+    'message' => '#^Call to method to\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
583
+    'count' => 1,
584
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
585 585
 ];
586 586
 $ignoreErrors[] = [
587
-	// identifier: class.notFound
588
-	'message' => '#^Call to static method fromDsn\\(\\) on an unknown class Symfony\\\\Component\\\\Mailer\\\\Transport\\.$#',
589
-	'count' => 1,
590
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
587
+    // identifier: class.notFound
588
+    'message' => '#^Call to static method fromDsn\\(\\) on an unknown class Symfony\\\\Component\\\\Mailer\\\\Transport\\.$#',
589
+    'count' => 1,
590
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
591 591
 ];
592 592
 $ignoreErrors[] = [
593
-	// identifier: class.notFound
594
-	'message' => '#^Class Symfony\\\\Component\\\\Mailer\\\\Mailer not found\\.$#',
595
-	'count' => 1,
596
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
593
+    // identifier: class.notFound
594
+    'message' => '#^Class Symfony\\\\Component\\\\Mailer\\\\Mailer not found\\.$#',
595
+    'count' => 1,
596
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
597 597
 ];
598 598
 $ignoreErrors[] = [
599
-	// identifier: class.notFound
600
-	'message' => '#^Instantiated class Symfony\\\\Component\\\\Mailer\\\\Mailer not found\\.$#',
601
-	'count' => 1,
602
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
599
+    // identifier: class.notFound
600
+    'message' => '#^Instantiated class Symfony\\\\Component\\\\Mailer\\\\Mailer not found\\.$#',
601
+    'count' => 1,
602
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
603 603
 ];
604 604
 $ignoreErrors[] = [
605
-	// identifier: class.notFound
606
-	'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Address not found\\.$#',
607
-	'count' => 1,
608
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
605
+    // identifier: class.notFound
606
+    'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Address not found\\.$#',
607
+    'count' => 1,
608
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
609 609
 ];
610 610
 $ignoreErrors[] = [
611
-	// identifier: class.notFound
612
-	'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\DkimSigner not found\\.$#',
613
-	'count' => 1,
614
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
611
+    // identifier: class.notFound
612
+    'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\DkimSigner not found\\.$#',
613
+    'count' => 1,
614
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
615 615
 ];
616 616
 $ignoreErrors[] = [
617
-	// identifier: class.notFound
618
-	'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\SMimeSigner not found\\.$#',
619
-	'count' => 1,
620
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
617
+    // identifier: class.notFound
618
+    'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\SMimeSigner not found\\.$#',
619
+    'count' => 1,
620
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
621 621
 ];
622 622
 $ignoreErrors[] = [
623
-	// identifier: class.notFound
624
-	'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Email not found\\.$#',
625
-	'count' => 1,
626
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
623
+    // identifier: class.notFound
624
+    'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Email not found\\.$#',
625
+    'count' => 1,
626
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
627 627
 ];
628 628
 $ignoreErrors[] = [
629
-	// identifier: class.notFound
630
-	'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Part\\\\DataPart not found\\.$#',
631
-	'count' => 4,
632
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
629
+    // identifier: class.notFound
630
+    'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Part\\\\DataPart not found\\.$#',
631
+    'count' => 4,
632
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
633 633
 ];
634 634
 $ignoreErrors[] = [
635
-	// identifier: class.notFound
636
-	'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Part\\\\File not found\\.$#',
637
-	'count' => 2,
638
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
635
+    // identifier: class.notFound
636
+    'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Part\\\\File not found\\.$#',
637
+    'count' => 2,
638
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
639 639
 ];
640 640
 $ignoreErrors[] = [
641
-	// identifier: class.notFound
642
-	'message' => '#^Method BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:makeAddress\\(\\) has invalid return type Symfony\\\\Component\\\\Mime\\\\Address\\.$#',
643
-	'count' => 1,
644
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
641
+    // identifier: class.notFound
642
+    'message' => '#^Method BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:makeAddress\\(\\) has invalid return type Symfony\\\\Component\\\\Mime\\\\Address\\.$#',
643
+    'count' => 1,
644
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
645 645
 ];
646 646
 $ignoreErrors[] = [
647
-	// identifier: class.notFound
648
-	'message' => '#^Method BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:transporter\\(\\) has invalid return type Symfony\\\\Component\\\\Mailer\\\\Mailer\\.$#',
649
-	'count' => 1,
650
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
647
+    // identifier: class.notFound
648
+    'message' => '#^Method BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:transporter\\(\\) has invalid return type Symfony\\\\Component\\\\Mailer\\\\Mailer\\.$#',
649
+    'count' => 1,
650
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
651 651
 ];
652 652
 $ignoreErrors[] = [
653
-	// identifier: property.onlyWritten
654
-	'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$encryption is never read, only written\\.$#',
655
-	'count' => 1,
656
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
653
+    // identifier: property.onlyWritten
654
+    'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$encryption is never read, only written\\.$#',
655
+    'count' => 1,
656
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
657 657
 ];
658 658
 $ignoreErrors[] = [
659
-	// identifier: class.notFound
660
-	'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$mailer has unknown class Symfony\\\\Component\\\\Mime\\\\Email as its type\\.$#',
661
-	'count' => 1,
662
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
659
+    // identifier: class.notFound
660
+    'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$mailer has unknown class Symfony\\\\Component\\\\Mime\\\\Email as its type\\.$#',
661
+    'count' => 1,
662
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
663 663
 ];
664 664
 $ignoreErrors[] = [
665
-	// identifier: property.onlyWritten
666
-	'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$timeout is never read, only written\\.$#',
667
-	'count' => 1,
668
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
665
+    // identifier: property.onlyWritten
666
+    'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$timeout is never read, only written\\.$#',
667
+    'count' => 1,
668
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
669 669
 ];
670 670
 $ignoreErrors[] = [
671
-	// identifier: class.notFound
672
-	'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$transporter has unknown class Symfony\\\\Component\\\\Mailer\\\\Mailer as its type\\.$#',
673
-	'count' => 1,
674
-	'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
671
+    // identifier: class.notFound
672
+    'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$transporter has unknown class Symfony\\\\Component\\\\Mailer\\\\Mailer as its type\\.$#',
673
+    'count' => 1,
674
+    'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
675 675
 ];
676 676
 $ignoreErrors[] = [
677
-	// identifier: new.static
678
-	'message' => '#^Unsafe usage of new static\\(\\)\\.$#',
679
-	'count' => 1,
680
-	'path' => __DIR__ . '/src/Middlewares/BaseMiddleware.php',
677
+    // identifier: new.static
678
+    'message' => '#^Unsafe usage of new static\\(\\)\\.$#',
679
+    'count' => 1,
680
+    'path' => __DIR__ . '/src/Middlewares/BaseMiddleware.php',
681 681
 ];
682 682
 $ignoreErrors[] = [
683
-	// identifier: method.nonObject
684
-	'message' => '#^Cannot call method setPreviousUrl\\(\\) on array\\|bool\\|float\\|int\\|object\\|string\\.$#',
685
-	'count' => 1,
686
-	'path' => __DIR__ . '/src/Router/Dispatcher.php',
683
+    // identifier: method.nonObject
684
+    'message' => '#^Cannot call method setPreviousUrl\\(\\) on array\\|bool\\|float\\|int\\|object\\|string\\.$#',
685
+    'count' => 1,
686
+    'path' => __DIR__ . '/src/Router/Dispatcher.php',
687 687
 ];
688 688
 $ignoreErrors[] = [
689
-	// identifier: assign.propertyType
690
-	'message' => '#^Property BlitzPHP\\\\Router\\\\Dispatcher\\:\\:\\$request \\(BlitzPHP\\\\Http\\\\Request\\) does not accept Psr\\\\Http\\\\Message\\\\ServerRequestInterface\\.$#',
691
-	'count' => 1,
692
-	'path' => __DIR__ . '/src/Router/Dispatcher.php',
689
+    // identifier: assign.propertyType
690
+    'message' => '#^Property BlitzPHP\\\\Router\\\\Dispatcher\\:\\:\\$request \\(BlitzPHP\\\\Http\\\\Request\\) does not accept Psr\\\\Http\\\\Message\\\\ServerRequestInterface\\.$#',
691
+    'count' => 1,
692
+    'path' => __DIR__ . '/src/Router/Dispatcher.php',
693 693
 ];
694 694
 $ignoreErrors[] = [
695
-	// identifier: assign.propertyType
696
-	'message' => '#^Property BlitzPHP\\\\Router\\\\Dispatcher\\:\\:\\$response \\(BlitzPHP\\\\Http\\\\Response\\) does not accept Psr\\\\Http\\\\Message\\\\ResponseInterface\\.$#',
697
-	'count' => 3,
698
-	'path' => __DIR__ . '/src/Router/Dispatcher.php',
695
+    // identifier: assign.propertyType
696
+    'message' => '#^Property BlitzPHP\\\\Router\\\\Dispatcher\\:\\:\\$response \\(BlitzPHP\\\\Http\\\\Response\\) does not accept Psr\\\\Http\\\\Message\\\\ResponseInterface\\.$#',
697
+    'count' => 3,
698
+    'path' => __DIR__ . '/src/Router/Dispatcher.php',
699 699
 ];
700 700
 $ignoreErrors[] = [
701
-	// identifier: class.notFound
702
-	'message' => '#^Call to method directive\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#',
703
-	'count' => 1,
704
-	'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
701
+    // identifier: class.notFound
702
+    'message' => '#^Call to method directive\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#',
703
+    'count' => 1,
704
+    'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
705 705
 ];
706 706
 $ignoreErrors[] = [
707
-	// identifier: class.notFound
708
-	'message' => '#^Call to method if\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#',
709
-	'count' => 1,
710
-	'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
707
+    // identifier: class.notFound
708
+    'message' => '#^Call to method if\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#',
709
+    'count' => 1,
710
+    'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
711 711
 ];
712 712
 $ignoreErrors[] = [
713
-	// identifier: class.notFound
714
-	'message' => '#^Call to method render\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#',
715
-	'count' => 1,
716
-	'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
713
+    // identifier: class.notFound
714
+    'message' => '#^Call to method render\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#',
715
+    'count' => 1,
716
+    'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
717 717
 ];
718 718
 $ignoreErrors[] = [
719
-	// identifier: class.notFound
720
-	'message' => '#^Class Jenssegers\\\\Blade\\\\Blade not found\\.$#',
721
-	'count' => 1,
722
-	'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
719
+    // identifier: class.notFound
720
+    'message' => '#^Class Jenssegers\\\\Blade\\\\Blade not found\\.$#',
721
+    'count' => 1,
722
+    'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
723 723
 ];
724 724
 $ignoreErrors[] = [
725
-	// identifier: class.notFound
726
-	'message' => '#^Instantiated class Jenssegers\\\\Blade\\\\Blade not found\\.$#',
727
-	'count' => 1,
728
-	'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
725
+    // identifier: class.notFound
726
+    'message' => '#^Instantiated class Jenssegers\\\\Blade\\\\Blade not found\\.$#',
727
+    'count' => 1,
728
+    'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
729 729
 ];
730 730
 $ignoreErrors[] = [
731
-	// identifier: class.notFound
732
-	'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\BladeAdapter\\:\\:\\$engine has unknown class Jenssegers\\\\Blade\\\\Blade as its type\\.$#',
733
-	'count' => 1,
734
-	'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
731
+    // identifier: class.notFound
732
+    'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\BladeAdapter\\:\\:\\$engine has unknown class Jenssegers\\\\Blade\\\\Blade as its type\\.$#',
733
+    'count' => 1,
734
+    'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
735 735
 ];
736 736
 $ignoreErrors[] = [
737
-	// identifier: class.notFound
738
-	'message' => '#^Call to method renderToString\\(\\) on an unknown class Latte\\\\Engine\\.$#',
739
-	'count' => 1,
740
-	'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
737
+    // identifier: class.notFound
738
+    'message' => '#^Call to method renderToString\\(\\) on an unknown class Latte\\\\Engine\\.$#',
739
+    'count' => 1,
740
+    'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
741 741
 ];
742 742
 $ignoreErrors[] = [
743
-	// identifier: class.notFound
744
-	'message' => '#^Call to method setAutoRefresh\\(\\) on an unknown class Latte\\\\Engine\\.$#',
745
-	'count' => 1,
746
-	'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
743
+    // identifier: class.notFound
744
+    'message' => '#^Call to method setAutoRefresh\\(\\) on an unknown class Latte\\\\Engine\\.$#',
745
+    'count' => 1,
746
+    'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
747 747
 ];
748 748
 $ignoreErrors[] = [
749
-	// identifier: class.notFound
750
-	'message' => '#^Call to method setLoader\\(\\) on an unknown class Latte\\\\Engine\\.$#',
751
-	'count' => 1,
752
-	'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
749
+    // identifier: class.notFound
750
+    'message' => '#^Call to method setLoader\\(\\) on an unknown class Latte\\\\Engine\\.$#',
751
+    'count' => 1,
752
+    'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
753 753
 ];
754 754
 $ignoreErrors[] = [
755
-	// identifier: class.notFound
756
-	'message' => '#^Call to method setTempDirectory\\(\\) on an unknown class Latte\\\\Engine\\.$#',
757
-	'count' => 1,
758
-	'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
755
+    // identifier: class.notFound
756
+    'message' => '#^Call to method setTempDirectory\\(\\) on an unknown class Latte\\\\Engine\\.$#',
757
+    'count' => 1,
758
+    'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
759 759
 ];
760 760
 $ignoreErrors[] = [
761
-	// identifier: class.notFound
762
-	'message' => '#^Class Latte\\\\Engine not found\\.$#',
763
-	'count' => 1,
764
-	'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
761
+    // identifier: class.notFound
762
+    'message' => '#^Class Latte\\\\Engine not found\\.$#',
763
+    'count' => 1,
764
+    'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
765 765
 ];
766 766
 $ignoreErrors[] = [
767
-	// identifier: class.notFound
768
-	'message' => '#^Instantiated class Latte\\\\Engine not found\\.$#',
769
-	'count' => 1,
770
-	'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
767
+    // identifier: class.notFound
768
+    'message' => '#^Instantiated class Latte\\\\Engine not found\\.$#',
769
+    'count' => 1,
770
+    'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
771 771
 ];
772 772
 $ignoreErrors[] = [
773
-	// identifier: class.notFound
774
-	'message' => '#^Instantiated class Latte\\\\Loaders\\\\FileLoader not found\\.$#',
775
-	'count' => 1,
776
-	'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
773
+    // identifier: class.notFound
774
+    'message' => '#^Instantiated class Latte\\\\Loaders\\\\FileLoader not found\\.$#',
775
+    'count' => 1,
776
+    'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
777 777
 ];
778 778
 $ignoreErrors[] = [
779
-	// identifier: class.notFound
780
-	'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\LatteAdapter\\:\\:\\$latte has unknown class Latte\\\\Engine as its type\\.$#',
781
-	'count' => 1,
782
-	'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
779
+    // identifier: class.notFound
780
+    'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\LatteAdapter\\:\\:\\$latte has unknown class Latte\\\\Engine as its type\\.$#',
781
+    'count' => 1,
782
+    'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
783 783
 ];
784 784
 $ignoreErrors[] = [
785
-	// identifier: class.notFound
786
-	'message' => '#^Call to method addFolder\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#',
787
-	'count' => 2,
788
-	'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
785
+    // identifier: class.notFound
786
+    'message' => '#^Call to method addFolder\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#',
787
+    'count' => 2,
788
+    'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
789 789
 ];
790 790
 $ignoreErrors[] = [
791
-	// identifier: class.notFound
792
-	'message' => '#^Call to method loadExtension\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#',
793
-	'count' => 1,
794
-	'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
791
+    // identifier: class.notFound
792
+    'message' => '#^Call to method loadExtension\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#',
793
+    'count' => 1,
794
+    'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
795 795
 ];
796 796
 $ignoreErrors[] = [
797
-	// identifier: class.notFound
798
-	'message' => '#^Call to method registerFunction\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#',
799
-	'count' => 1,
800
-	'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
797
+    // identifier: class.notFound
798
+    'message' => '#^Call to method registerFunction\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#',
799
+    'count' => 1,
800
+    'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
801 801
 ];
802 802
 $ignoreErrors[] = [
803
-	// identifier: class.notFound
804
-	'message' => '#^Call to method render\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#',
805
-	'count' => 1,
806
-	'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
803
+    // identifier: class.notFound
804
+    'message' => '#^Call to method render\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#',
805
+    'count' => 1,
806
+    'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
807 807
 ];
808 808
 $ignoreErrors[] = [
809
-	// identifier: class.notFound
810
-	'message' => '#^Class League\\\\Plates\\\\Engine not found\\.$#',
811
-	'count' => 1,
812
-	'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
809
+    // identifier: class.notFound
810
+    'message' => '#^Class League\\\\Plates\\\\Engine not found\\.$#',
811
+    'count' => 1,
812
+    'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
813 813
 ];
814 814
 $ignoreErrors[] = [
815
-	// identifier: class.notFound
816
-	'message' => '#^Instantiated class League\\\\Plates\\\\Engine not found\\.$#',
817
-	'count' => 1,
818
-	'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
815
+    // identifier: class.notFound
816
+    'message' => '#^Instantiated class League\\\\Plates\\\\Engine not found\\.$#',
817
+    'count' => 1,
818
+    'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
819 819
 ];
820 820
 $ignoreErrors[] = [
821
-	// identifier: class.notFound
822
-	'message' => '#^Instantiated class League\\\\Plates\\\\Extension\\\\Asset not found\\.$#',
823
-	'count' => 1,
824
-	'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
821
+    // identifier: class.notFound
822
+    'message' => '#^Instantiated class League\\\\Plates\\\\Extension\\\\Asset not found\\.$#',
823
+    'count' => 1,
824
+    'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
825 825
 ];
826 826
 $ignoreErrors[] = [
827
-	// identifier: class.notFound
828
-	'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\PlatesAdapter\\:\\:\\$engine has unknown class League\\\\Plates\\\\Engine as its type\\.$#',
829
-	'count' => 1,
830
-	'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
827
+    // identifier: class.notFound
828
+    'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\PlatesAdapter\\:\\:\\$engine has unknown class League\\\\Plates\\\\Engine as its type\\.$#',
829
+    'count' => 1,
830
+    'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
831 831
 ];
832 832
 $ignoreErrors[] = [
833
-	// identifier: class.notFound
834
-	'message' => '#^Access to constant CACHING_LIFETIME_SAVED on an unknown class Smarty\\.$#',
835
-	'count' => 1,
836
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
833
+    // identifier: class.notFound
834
+    'message' => '#^Access to constant CACHING_LIFETIME_SAVED on an unknown class Smarty\\.$#',
835
+    'count' => 1,
836
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
837 837
 ];
838 838
 $ignoreErrors[] = [
839
-	// identifier: class.notFound
840
-	'message' => '#^Access to constant CACHING_OFF on an unknown class Smarty\\.$#',
841
-	'count' => 1,
842
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
839
+    // identifier: class.notFound
840
+    'message' => '#^Access to constant CACHING_OFF on an unknown class Smarty\\.$#',
841
+    'count' => 1,
842
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
843 843
 ];
844 844
 $ignoreErrors[] = [
845
-	// identifier: class.notFound
846
-	'message' => '#^Call to method addPluginsDir\\(\\) on an unknown class Smarty\\.$#',
847
-	'count' => 1,
848
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
845
+    // identifier: class.notFound
846
+    'message' => '#^Call to method addPluginsDir\\(\\) on an unknown class Smarty\\.$#',
847
+    'count' => 1,
848
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
849 849
 ];
850 850
 $ignoreErrors[] = [
851
-	// identifier: class.notFound
852
-	'message' => '#^Call to method assign\\(\\) on an unknown class Smarty\\.$#',
853
-	'count' => 1,
854
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
851
+    // identifier: class.notFound
852
+    'message' => '#^Call to method assign\\(\\) on an unknown class Smarty\\.$#',
853
+    'count' => 1,
854
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
855 855
 ];
856 856
 $ignoreErrors[] = [
857
-	// identifier: class.notFound
858
-	'message' => '#^Call to method fetch\\(\\) on an unknown class Smarty\\.$#',
859
-	'count' => 1,
860
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
857
+    // identifier: class.notFound
858
+    'message' => '#^Call to method fetch\\(\\) on an unknown class Smarty\\.$#',
859
+    'count' => 1,
860
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
861 861
 ];
862 862
 $ignoreErrors[] = [
863
-	// identifier: class.notFound
864
-	'message' => '#^Call to method setCacheLifetime\\(\\) on an unknown class Smarty\\.$#',
865
-	'count' => 1,
866
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
863
+    // identifier: class.notFound
864
+    'message' => '#^Call to method setCacheLifetime\\(\\) on an unknown class Smarty\\.$#',
865
+    'count' => 1,
866
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
867 867
 ];
868 868
 $ignoreErrors[] = [
869
-	// identifier: class.notFound
870
-	'message' => '#^Call to method setCaching\\(\\) on an unknown class Smarty\\.$#',
871
-	'count' => 1,
872
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
869
+    // identifier: class.notFound
870
+    'message' => '#^Call to method setCaching\\(\\) on an unknown class Smarty\\.$#',
871
+    'count' => 1,
872
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
873 873
 ];
874 874
 $ignoreErrors[] = [
875
-	// identifier: class.notFound
876
-	'message' => '#^Call to method setCompileId\\(\\) on an unknown class Smarty\\.$#',
877
-	'count' => 1,
878
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
875
+    // identifier: class.notFound
876
+    'message' => '#^Call to method setCompileId\\(\\) on an unknown class Smarty\\.$#',
877
+    'count' => 1,
878
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
879 879
 ];
880 880
 $ignoreErrors[] = [
881
-	// identifier: class.notFound
882
-	'message' => '#^Call to method setTemplateDir\\(\\) on an unknown class Smarty\\.$#',
883
-	'count' => 1,
884
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
881
+    // identifier: class.notFound
882
+    'message' => '#^Call to method setTemplateDir\\(\\) on an unknown class Smarty\\.$#',
883
+    'count' => 1,
884
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
885 885
 ];
886 886
 $ignoreErrors[] = [
887
-	// identifier: class.notFound
888
-	'message' => '#^Class Smarty not found\\.$#',
889
-	'count' => 1,
890
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
887
+    // identifier: class.notFound
888
+    'message' => '#^Class Smarty not found\\.$#',
889
+    'count' => 1,
890
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
891 891
 ];
892 892
 $ignoreErrors[] = [
893
-	// identifier: class.notFound
894
-	'message' => '#^Instantiated class Smarty not found\\.$#',
895
-	'count' => 1,
896
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
893
+    // identifier: class.notFound
894
+    'message' => '#^Instantiated class Smarty not found\\.$#',
895
+    'count' => 1,
896
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
897 897
 ];
898 898
 $ignoreErrors[] = [
899
-	// identifier: class.notFound
900
-	'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\SmartyAdapter\\:\\:\\$engine has unknown class Smarty as its type\\.$#',
901
-	'count' => 1,
902
-	'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
899
+    // identifier: class.notFound
900
+    'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\SmartyAdapter\\:\\:\\$engine has unknown class Smarty as its type\\.$#',
901
+    'count' => 1,
902
+    'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
903 903
 ];
904 904
 $ignoreErrors[] = [
905
-	// identifier: class.notFound
906
-	'message' => '#^Call to method addFilter\\(\\) on an unknown class Twig\\\\Environment\\.$#',
907
-	'count' => 1,
908
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
905
+    // identifier: class.notFound
906
+    'message' => '#^Call to method addFilter\\(\\) on an unknown class Twig\\\\Environment\\.$#',
907
+    'count' => 1,
908
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
909 909
 ];
910 910
 $ignoreErrors[] = [
911
-	// identifier: class.notFound
912
-	'message' => '#^Call to method addFunction\\(\\) on an unknown class Twig\\\\Environment\\.$#',
913
-	'count' => 1,
914
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
911
+    // identifier: class.notFound
912
+    'message' => '#^Call to method addFunction\\(\\) on an unknown class Twig\\\\Environment\\.$#',
913
+    'count' => 1,
914
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
915 915
 ];
916 916
 $ignoreErrors[] = [
917
-	// identifier: class.notFound
918
-	'message' => '#^Call to method addGlobal\\(\\) on an unknown class Twig\\\\Environment\\.$#',
919
-	'count' => 1,
920
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
917
+    // identifier: class.notFound
918
+    'message' => '#^Call to method addGlobal\\(\\) on an unknown class Twig\\\\Environment\\.$#',
919
+    'count' => 1,
920
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
921 921
 ];
922 922
 $ignoreErrors[] = [
923
-	// identifier: class.notFound
924
-	'message' => '#^Call to method disableAutoReload\\(\\) on an unknown class Twig\\\\Environment\\.$#',
925
-	'count' => 1,
926
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
923
+    // identifier: class.notFound
924
+    'message' => '#^Call to method disableAutoReload\\(\\) on an unknown class Twig\\\\Environment\\.$#',
925
+    'count' => 1,
926
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
927 927
 ];
928 928
 $ignoreErrors[] = [
929
-	// identifier: class.notFound
930
-	'message' => '#^Call to method disableDebug\\(\\) on an unknown class Twig\\\\Environment\\.$#',
931
-	'count' => 1,
932
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
929
+    // identifier: class.notFound
930
+    'message' => '#^Call to method disableDebug\\(\\) on an unknown class Twig\\\\Environment\\.$#',
931
+    'count' => 1,
932
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
933 933
 ];
934 934
 $ignoreErrors[] = [
935
-	// identifier: class.notFound
936
-	'message' => '#^Call to method disableStrictVariables\\(\\) on an unknown class Twig\\\\Environment\\.$#',
937
-	'count' => 1,
938
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
935
+    // identifier: class.notFound
936
+    'message' => '#^Call to method disableStrictVariables\\(\\) on an unknown class Twig\\\\Environment\\.$#',
937
+    'count' => 1,
938
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
939 939
 ];
940 940
 $ignoreErrors[] = [
941
-	// identifier: class.notFound
942
-	'message' => '#^Call to method enableAutoReload\\(\\) on an unknown class Twig\\\\Environment\\.$#',
943
-	'count' => 1,
944
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
941
+    // identifier: class.notFound
942
+    'message' => '#^Call to method enableAutoReload\\(\\) on an unknown class Twig\\\\Environment\\.$#',
943
+    'count' => 1,
944
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
945 945
 ];
946 946
 $ignoreErrors[] = [
947
-	// identifier: class.notFound
948
-	'message' => '#^Call to method enableDebug\\(\\) on an unknown class Twig\\\\Environment\\.$#',
949
-	'count' => 1,
950
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
947
+    // identifier: class.notFound
948
+    'message' => '#^Call to method enableDebug\\(\\) on an unknown class Twig\\\\Environment\\.$#',
949
+    'count' => 1,
950
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
951 951
 ];
952 952
 $ignoreErrors[] = [
953
-	// identifier: class.notFound
954
-	'message' => '#^Call to method enableStrictVariables\\(\\) on an unknown class Twig\\\\Environment\\.$#',
955
-	'count' => 1,
956
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
953
+    // identifier: class.notFound
954
+    'message' => '#^Call to method enableStrictVariables\\(\\) on an unknown class Twig\\\\Environment\\.$#',
955
+    'count' => 1,
956
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
957 957
 ];
958 958
 $ignoreErrors[] = [
959
-	// identifier: class.notFound
960
-	'message' => '#^Call to method render\\(\\) on an unknown class Twig\\\\Environment\\.$#',
961
-	'count' => 1,
962
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
959
+    // identifier: class.notFound
960
+    'message' => '#^Call to method render\\(\\) on an unknown class Twig\\\\Environment\\.$#',
961
+    'count' => 1,
962
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
963 963
 ];
964 964
 $ignoreErrors[] = [
965
-	// identifier: class.notFound
966
-	'message' => '#^Call to method setCache\\(\\) on an unknown class Twig\\\\Environment\\.$#',
967
-	'count' => 1,
968
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
965
+    // identifier: class.notFound
966
+    'message' => '#^Call to method setCache\\(\\) on an unknown class Twig\\\\Environment\\.$#',
967
+    'count' => 1,
968
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
969 969
 ];
970 970
 $ignoreErrors[] = [
971
-	// identifier: class.notFound
972
-	'message' => '#^Call to method setCharset\\(\\) on an unknown class Twig\\\\Environment\\.$#',
973
-	'count' => 1,
974
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
971
+    // identifier: class.notFound
972
+    'message' => '#^Call to method setCharset\\(\\) on an unknown class Twig\\\\Environment\\.$#',
973
+    'count' => 1,
974
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
975 975
 ];
976 976
 $ignoreErrors[] = [
977
-	// identifier: class.notFound
978
-	'message' => '#^Class Twig\\\\Environment not found\\.$#',
979
-	'count' => 1,
980
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
977
+    // identifier: class.notFound
978
+    'message' => '#^Class Twig\\\\Environment not found\\.$#',
979
+    'count' => 1,
980
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
981 981
 ];
982 982
 $ignoreErrors[] = [
983
-	// identifier: class.notFound
984
-	'message' => '#^Class Twig\\\\TwigFilter not found\\.$#',
985
-	'count' => 1,
986
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
983
+    // identifier: class.notFound
984
+    'message' => '#^Class Twig\\\\TwigFilter not found\\.$#',
985
+    'count' => 1,
986
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
987 987
 ];
988 988
 $ignoreErrors[] = [
989
-	// identifier: class.notFound
990
-	'message' => '#^Class Twig\\\\TwigFunction not found\\.$#',
991
-	'count' => 1,
992
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
989
+    // identifier: class.notFound
990
+    'message' => '#^Class Twig\\\\TwigFunction not found\\.$#',
991
+    'count' => 1,
992
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
993 993
 ];
994 994
 $ignoreErrors[] = [
995
-	// identifier: class.notFound
996
-	'message' => '#^Instantiated class Twig\\\\Environment not found\\.$#',
997
-	'count' => 1,
998
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
995
+    // identifier: class.notFound
996
+    'message' => '#^Instantiated class Twig\\\\Environment not found\\.$#',
997
+    'count' => 1,
998
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
999 999
 ];
1000 1000
 $ignoreErrors[] = [
1001
-	// identifier: class.notFound
1002
-	'message' => '#^Instantiated class Twig\\\\Loader\\\\FilesystemLoader not found\\.$#',
1003
-	'count' => 1,
1004
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
1001
+    // identifier: class.notFound
1002
+    'message' => '#^Instantiated class Twig\\\\Loader\\\\FilesystemLoader not found\\.$#',
1003
+    'count' => 1,
1004
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
1005 1005
 ];
1006 1006
 $ignoreErrors[] = [
1007
-	// identifier: parameter.notFound
1008
-	'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$cache_id$#',
1009
-	'count' => 1,
1010
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
1007
+    // identifier: parameter.notFound
1008
+    'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$cache_id$#',
1009
+    'count' => 1,
1010
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
1011 1011
 ];
1012 1012
 $ignoreErrors[] = [
1013
-	// identifier: parameter.notFound
1014
-	'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$compile_id$#',
1015
-	'count' => 1,
1016
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
1013
+    // identifier: parameter.notFound
1014
+    'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$compile_id$#',
1015
+    'count' => 1,
1016
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
1017 1017
 ];
1018 1018
 $ignoreErrors[] = [
1019
-	// identifier: parameter.notFound
1020
-	'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$parent$#',
1021
-	'count' => 1,
1022
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
1019
+    // identifier: parameter.notFound
1020
+    'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$parent$#',
1021
+    'count' => 1,
1022
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
1023 1023
 ];
1024 1024
 $ignoreErrors[] = [
1025
-	// identifier: parameter.notFound
1026
-	'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$template$#',
1027
-	'count' => 1,
1028
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
1025
+    // identifier: parameter.notFound
1026
+    'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$template$#',
1027
+    'count' => 1,
1028
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
1029 1029
 ];
1030 1030
 $ignoreErrors[] = [
1031
-	// identifier: class.notFound
1032
-	'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\TwigAdapter\\:\\:\\$engine has unknown class Twig\\\\Environment as its type\\.$#',
1033
-	'count' => 1,
1034
-	'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
1031
+    // identifier: class.notFound
1032
+    'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\TwigAdapter\\:\\:\\$engine has unknown class Twig\\\\Environment as its type\\.$#',
1033
+    'count' => 1,
1034
+    'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
1035 1035
 ];
1036 1036
 
1037 1037
 return ['parameters' => ['ignoreErrors' => $ignoreErrors]];
Please login to merge, or discard this patch.