Passed
Push — main ( 040cbb...031be7 )
by Dimitri
05:05
created
src/Helpers/common.php 1 patch
Spacing   +67 added lines, -67 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
 // ================================= FONCTIONS UTIILITAIRES ESSENTIELLES ================================= //
34 34
 
35
-if (! function_exists('env')) {
35
+if (!function_exists('env')) {
36 36
     /**
37 37
      * Obtient une variable d'environnement à partir des sources disponibles et fournit une émulation
38 38
      * pour les variables d'environnement non prises en charge ou incohérentes
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     }
49 49
 }
50 50
 
51
-if (! function_exists('helper')) {
51
+if (!function_exists('helper')) {
52 52
     /**
53 53
      * Charge un fichier d'aide en mémoire. Prend en charge les assistants d'espace de noms,
54 54
      * à la fois dans et hors du répertoire 'helpers' d'un répertoire à espace de noms.
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     }
65 65
 }
66 66
 
67
-if (! function_exists('model')) {
67
+if (!function_exists('model')) {
68 68
     /**
69 69
      * Simple maniere d'obtenir un modele.
70 70
      *
@@ -74,13 +74,13 @@  discard block
 block discarded – undo
74 74
      *
75 75
      * @return T
76 76
      */
77
-    function model(array|string $name, ?ConnectionInterface &$conn = null)
77
+    function model(array|string $name, ?ConnectionInterface&$conn = null)
78 78
     {
79 79
         return Load::model($name, $conn);
80 80
     }
81 81
 }
82 82
 
83
-if (! function_exists('service')) {
83
+if (!function_exists('service')) {
84 84
     /**
85 85
      * Permet un accès plus propre au fichier de configuration des services.
86 86
      * Renvoie toujours une instance SHARED de la classe, donc l'appel de la fonction plusieurs fois renvera toujours la même instance.
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
     }
102 102
 }
103 103
 
104
-if (! function_exists('single_service')) {
104
+if (!function_exists('single_service')) {
105 105
     /**
106 106
      * Autoriser l'accès propre à un service.
107 107
      * Renvoie toujours une nouvelle instance de la classe.
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
     }
122 122
 }
123 123
 
124
-if (! function_exists('show404')) {
124
+if (!function_exists('show404')) {
125 125
     /**
126 126
      * Afficher une page 404 introuvable dans le navigateur
127 127
      */
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
     }
132 132
 }
133 133
 
134
-if (! function_exists('command')) {
134
+if (!function_exists('command')) {
135 135
     /**
136 136
      * Exécute une seule commande.
137 137
      * Entrée attendue dans une seule chaîne comme celle qui serait utilisée sur la ligne de commande elle-même :
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
     }
195 195
 }
196 196
 
197
-if (! function_exists('config')) {
197
+if (!function_exists('config')) {
198 198
     /**
199 199
      * GET/SET App config
200 200
      *
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
     }
226 226
 }
227 227
 
228
-if (! function_exists('logger')) {
228
+if (!function_exists('logger')) {
229 229
     /**
230 230
      * Une méthode de commodité pour les événements de journalisation via le système Log.
231 231
      *
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
     }
257 257
 }
258 258
 
259
-if (! function_exists('cache')) {
259
+if (!function_exists('cache')) {
260 260
     /**
261 261
      * Une méthode pratique qui donne accès au cache
262 262
      * objet. Si aucun paramètre n'est fourni, renverra l'objet,
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
     }
288 288
 }
289 289
 
290
-if (! function_exists('cookie')) {
290
+if (!function_exists('cookie')) {
291 291
     /**
292 292
      * Une méthode pratique qui donne accès à l'objet cookie.
293 293
      * Si aucun paramètre n'est fourni, renverra l'objet,
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
     }
317 317
 }
318 318
 
319
-if (! function_exists('session')) {
319
+if (!function_exists('session')) {
320 320
     /**
321 321
      * Une méthode pratique pour accéder à l'instance de session, ou un élément qui a été défini dans la session.
322 322
      *
@@ -342,7 +342,7 @@  discard block
 block discarded – undo
342 342
 
343 343
 // =========================== FONCTIONS DE PREVENTION D'ATTAQUE =========================== //
344 344
 
345
-if (! function_exists('esc')) {
345
+if (!function_exists('esc')) {
346 346
     /**
347 347
      * Effectue un simple échappement automatique des données pour des raisons de sécurité.
348 348
      * Pourrait envisager de rendre cela plus complexe à une date ultérieure.
@@ -369,7 +369,7 @@  discard block
 block discarded – undo
369 369
     }
370 370
 }
371 371
 
372
-if (! function_exists('h')) {
372
+if (!function_exists('h')) {
373 373
     /**
374 374
      * Méthode pratique pour htmlspecialchars.
375 375
      *
@@ -388,7 +388,7 @@  discard block
 block discarded – undo
388 388
     }
389 389
 }
390 390
 
391
-if (! function_exists('purify')) {
391
+if (!function_exists('purify')) {
392 392
     /**
393 393
      * Purifiez l'entrée à l'aide de la classe autonome HTMLPurifier.
394 394
      * Utilisez facilement plusieurs configurations de purificateur.
@@ -404,7 +404,7 @@  discard block
 block discarded – undo
404 404
     }
405 405
 }
406 406
 
407
-if (! function_exists('remove_invisible_characters')) {
407
+if (!function_exists('remove_invisible_characters')) {
408 408
     /**
409 409
      * Supprimer les caractères invisibles
410 410
      *
@@ -417,7 +417,7 @@  discard block
 block discarded – undo
417 417
     }
418 418
 }
419 419
 
420
-if (! function_exists('stringify_attributes')) {
420
+if (!function_exists('stringify_attributes')) {
421 421
     /**
422 422
      * Chaîner les attributs à utiliser dans les balises HTML.
423 423
      *
@@ -431,7 +431,7 @@  discard block
 block discarded – undo
431 431
 
432 432
 // ================================= FONCTIONS DE FORMULAIRE ================================= //
433 433
 
434
-if (! function_exists('csrf_token')) {
434
+if (!function_exists('csrf_token')) {
435 435
     /**
436 436
      * Renvoie la valeur de hachage actuelle pour la protection CSRF.
437 437
      * Peut être utilisé dans les vues lors de la construction manuelle d'input cachées, ou utilisé dans les variables javascript pour l'utilisation de l'API.
@@ -442,7 +442,7 @@  discard block
 block discarded – undo
442 442
     }
443 443
 }
444 444
 
445
-if (! function_exists('csrf_field')) {
445
+if (!function_exists('csrf_field')) {
446 446
     /**
447 447
      * Génère un champ input caché à utiliser dans les formulaires générés manuellement.
448 448
      */
@@ -454,7 +454,7 @@  discard block
 block discarded – undo
454 454
     }
455 455
 }
456 456
 
457
-if (! function_exists('csrf_meta')) {
457
+if (!function_exists('csrf_meta')) {
458 458
     /**
459 459
      * Génère une balise méta à utiliser dans les appels javascript.
460 460
      */
@@ -466,13 +466,13 @@  discard block
 block discarded – undo
466 466
     }
467 467
 }
468 468
 
469
-if (! function_exists('method_field')) {
469
+if (!function_exists('method_field')) {
470 470
     /**
471 471
      * Générer un champ de formulaire pour usurper le verbe HTTP utilisé par les formulaires.
472 472
      */
473 473
     function method_field(string $method): string
474 474
     {
475
-        if (! in_array($method = strtoupper($method), ['PUT', 'POST', 'DELETE', 'PATCH'], true)) {
475
+        if (!in_array($method = strtoupper($method), ['PUT', 'POST', 'DELETE', 'PATCH'], true)) {
476 476
             throw new InvalidArgumentException(sprintf('Methode %s invalide', $method));
477 477
         }
478 478
 
@@ -482,7 +482,7 @@  discard block
 block discarded – undo
482 482
 
483 483
 // ================================= FONCTIONS D'ENVIRONNEMENT D'EXECUTION ================================= //
484 484
 
485
-if (! function_exists('environment')) {
485
+if (!function_exists('environment')) {
486 486
     /**
487 487
      * Renvoi l'environnement d'execution actuel ou determine si on est dans un environnement specifie
488 488
      *
@@ -520,7 +520,7 @@  discard block
 block discarded – undo
520 520
     }
521 521
 }
522 522
 
523
-if (! function_exists('on_dev')) {
523
+if (!function_exists('on_dev')) {
524 524
     /**
525 525
      * Testez pour voir si nous sommes dans un environnement de développement.
526 526
      */
@@ -534,7 +534,7 @@  discard block
 block discarded – undo
534 534
     }
535 535
 }
536 536
 
537
-if (! function_exists('on_prod')) {
537
+if (!function_exists('on_prod')) {
538 538
     /**
539 539
      * Testez pour voir si nous sommes dans un environnement de production.
540 540
      */
@@ -548,7 +548,7 @@  discard block
 block discarded – undo
548 548
     }
549 549
 }
550 550
 
551
-if (! function_exists('on_test')) {
551
+if (!function_exists('on_test')) {
552 552
     /**
553 553
      * Testez pour voir si nous sommes dans un environnement de test
554 554
      */
@@ -558,7 +558,7 @@  discard block
 block discarded – undo
558 558
     }
559 559
 }
560 560
 
561
-if (! function_exists('is_cli')) {
561
+if (!function_exists('is_cli')) {
562 562
     /**
563 563
      * Testez pour voir si une demande a été faite à partir de la ligne de commande.
564 564
      */
@@ -568,7 +568,7 @@  discard block
 block discarded – undo
568 568
     }
569 569
 }
570 570
 
571
-if (! function_exists('is_php')) {
571
+if (!function_exists('is_php')) {
572 572
     /**
573 573
      * Détermine si la version actuelle de PHP est égale ou supérieure à la valeur fournie.
574 574
      */
@@ -578,7 +578,7 @@  discard block
 block discarded – undo
578 578
     }
579 579
 }
580 580
 
581
-if (! function_exists('is_windows')) {
581
+if (!function_exists('is_windows')) {
582 582
     /**
583 583
      * Déterminez si l'environnement actuel est basé sur Windows.
584 584
      */
@@ -588,7 +588,7 @@  discard block
 block discarded – undo
588 588
     }
589 589
 }
590 590
 
591
-if (! function_exists('is_https')) {
591
+if (!function_exists('is_https')) {
592 592
     /**
593 593
      * Determines if the application is accessed via an encrypted * (HTTPS) connection.
594 594
      */
@@ -598,7 +598,7 @@  discard block
 block discarded – undo
598 598
     }
599 599
 }
600 600
 
601
-if (! function_exists('is_localfile')) {
601
+if (!function_exists('is_localfile')) {
602 602
     /**
603 603
      * Vérifiez si le fichier auquel vous souhaitez accéder est un fichier local de votre application ou non
604 604
      */
@@ -608,11 +608,11 @@  discard block
 block discarded – undo
608 608
             return true;
609 609
         }
610 610
 
611
-        return ! preg_match('#^(https?://)#i', $name);
611
+        return !preg_match('#^(https?://)#i', $name);
612 612
     }
613 613
 }
614 614
 
615
-if (! function_exists('is_online')) {
615
+if (!function_exists('is_online')) {
616 616
     /**
617 617
      * Tester si l'application s'exécute en local ou en ligne.
618 618
      */
@@ -622,7 +622,7 @@  discard block
 block discarded – undo
622 622
     }
623 623
 }
624 624
 
625
-if (! function_exists('is_connected')) {
625
+if (!function_exists('is_connected')) {
626 626
     /**
627 627
      * Verifie si l'utilisateur a une connexion internet active.
628 628
      */
@@ -632,7 +632,7 @@  discard block
 block discarded – undo
632 632
     }
633 633
 }
634 634
 
635
-if (! function_exists('is_ajax_request')) {
635
+if (!function_exists('is_ajax_request')) {
636 636
     /**
637 637
      * Testez pour voir si une requête contient l'en-tête HTTP_X_REQUESTED_WITH.
638 638
      */
@@ -642,7 +642,7 @@  discard block
 block discarded – undo
642 642
     }
643 643
 }
644 644
 
645
-if (! function_exists('redirection')) {
645
+if (!function_exists('redirection')) {
646 646
     /**
647 647
      * Redirige l'utilisateur
648 648
      */
@@ -656,7 +656,7 @@  discard block
 block discarded – undo
656 656
     }
657 657
 }
658 658
 
659
-if (! function_exists('redirect')) {
659
+if (!function_exists('redirect')) {
660 660
     /**
661 661
      * Méthode pratique qui fonctionne avec la $request globale actuelle et
662 662
      * l'instance $router à rediriger à l'aide de routes nommées et le routage inversé
@@ -678,7 +678,7 @@  discard block
 block discarded – undo
678 678
     }
679 679
 }
680 680
 
681
-if (! function_exists('back')) {
681
+if (!function_exists('back')) {
682 682
     /**
683 683
      * Retourne a la page precedente
684 684
      *
@@ -690,7 +690,7 @@  discard block
 block discarded – undo
690 690
     }
691 691
 }
692 692
 
693
-if (! function_exists('link_to')) {
693
+if (!function_exists('link_to')) {
694 694
     /**
695 695
      * Étant donné une chaîne de contrôleur/méthode et tous les paramètres,
696 696
      * tentera de créer l'URL relative à la route correspondante.
@@ -710,7 +710,7 @@  discard block
 block discarded – undo
710 710
     }
711 711
 }
712 712
 
713
-if (! function_exists('clean_path')) {
713
+if (!function_exists('clean_path')) {
714 714
     /**
715 715
      * Une méthode pratique pour nettoyer les chemins pour
716 716
      * une sortie plus belle. Utile pour les exceptions
@@ -731,7 +731,7 @@  discard block
 block discarded – undo
731 731
     }
732 732
 }
733 733
 
734
-if (! function_exists('old')) {
734
+if (!function_exists('old')) {
735 735
     /**
736 736
      * Fournit l'accès à "entrée ancienne" qui a été définie dans la session lors d'un redirect()-withInput().
737 737
      *
@@ -744,7 +744,7 @@  discard block
 block discarded – undo
744 744
     function old(string $key, $default = null, $escape = 'html')
745 745
     {
746 746
         // Assurez-vous de charger la session
747
-        if (session_status() === PHP_SESSION_NONE && ! on_test()) {
747
+        if (session_status() === PHP_SESSION_NONE && !on_test()) {
748 748
             session(); // @codeCoverageIgnore
749 749
         }
750 750
 
@@ -759,7 +759,7 @@  discard block
 block discarded – undo
759 759
 
760 760
 // ================================= FONCTIONS DE DEBOGAGE ================================= //
761 761
 
762
-if (! function_exists('deprecationWarning')) {
762
+if (!function_exists('deprecationWarning')) {
763 763
     /**
764 764
      * Méthode d'assistance pour générer des avertissements d'obsolescence
765 765
      *
@@ -773,7 +773,7 @@  discard block
 block discarded – undo
773 773
     }
774 774
 }
775 775
 
776
-if (! function_exists('pr')) {
776
+if (!function_exists('pr')) {
777 777
     /**
778 778
      * print_r() convenience function.
779 779
      *
@@ -795,7 +795,7 @@  discard block
 block discarded – undo
795 795
     }
796 796
 }
797 797
 
798
-if (! function_exists('pj')) {
798
+if (!function_exists('pj')) {
799 799
     /**
800 800
      * json pretty print convenience function.
801 801
      *
@@ -816,7 +816,7 @@  discard block
 block discarded – undo
816 816
     }
817 817
 }
818 818
 
819
-if (! function_exists('trigger_warning')) {
819
+if (!function_exists('trigger_warning')) {
820 820
     /**
821 821
      * Déclenche un E_USER_WARNING.
822 822
      */
@@ -828,7 +828,7 @@  discard block
 block discarded – undo
828 828
 
829 829
 // ================================= FONCTIONS DIVERSES ================================= //
830 830
 
831
-if (! function_exists('force_https')) {
831
+if (!function_exists('force_https')) {
832 832
     /**
833 833
      * Utilisé pour forcer l'accès à une page via HTTPS.
834 834
      * Utilise une redirection standard, plus définira l'en-tête HSTS
@@ -855,7 +855,7 @@  discard block
 block discarded – undo
855 855
 
856 856
         // Si la session est active, nous devons régénérer
857 857
         // l'ID de session pour des raisons de sécurité.
858
-        if (! on_test() && session_status() === PHP_SESSION_ACTIVE) {
858
+        if (!on_test() && session_status() === PHP_SESSION_ACTIVE) {
859 859
             session()->regenerate(); // @codeCoverageIgnore
860 860
         }
861 861
 
@@ -871,7 +871,7 @@  discard block
 block discarded – undo
871 871
     }
872 872
 }
873 873
 
874
-if (! function_exists('get_type_name')) {
874
+if (!function_exists('get_type_name')) {
875 875
     /**
876 876
      * Renvoie la classe d'objets ou le type var de ce n'est pas un objet
877 877
      *
@@ -885,7 +885,7 @@  discard block
 block discarded – undo
885 885
     }
886 886
 }
887 887
 
888
-if (! function_exists('ip_address')) {
888
+if (!function_exists('ip_address')) {
889 889
     /**
890 890
      * Renvoie l'adresse IP de l'utilisateur actuel
891 891
      */
@@ -895,7 +895,7 @@  discard block
 block discarded – undo
895 895
     }
896 896
 }
897 897
 
898
-if (! function_exists('is_really_writable')) {
898
+if (!function_exists('is_really_writable')) {
899 899
     /**
900 900
      * Tests d'inscriptibilité des fichiers
901 901
      */
@@ -905,7 +905,7 @@  discard block
 block discarded – undo
905 905
     }
906 906
 }
907 907
 
908
-if (! function_exists('lang')) {
908
+if (!function_exists('lang')) {
909 909
     /**
910 910
      * Une méthode pratique pour traduire une chaîne ou un tableau d'entrées et formater
911 911
      * le résultat avec le MessageFormatter de l'extension intl.
@@ -916,7 +916,7 @@  discard block
 block discarded – undo
916 916
     }
917 917
 }
918 918
 
919
-if (! function_exists('__')) {
919
+if (!function_exists('__')) {
920 920
     /**
921 921
      * Une méthode pratique pour traduire une chaîne ou un tableau d'entrées et formater
922 922
      * le résultat avec le MessageFormatter de l'extension intl.
@@ -929,7 +929,7 @@  discard block
 block discarded – undo
929 929
     }
930 930
 }
931 931
 
932
-if (! function_exists('namespace_split')) {
932
+if (!function_exists('namespace_split')) {
933 933
     /**
934 934
      * Séparez l'espace de noms du nom de classe.
935 935
      *
@@ -950,7 +950,7 @@  discard block
 block discarded – undo
950 950
     }
951 951
 }
952 952
 
953
-if (! function_exists('view_exist')) {
953
+if (!function_exists('view_exist')) {
954 954
     /**
955 955
      * Verifie si un fichier de vue existe. Utile pour limiter les failles include
956 956
      */
@@ -960,7 +960,7 @@  discard block
 block discarded – undo
960 960
     }
961 961
 }
962 962
 
963
-if (! function_exists('view')) {
963
+if (!function_exists('view')) {
964 964
     /**
965 965
      * Saisit la classe compatible avec le RendererInterface et lui demande d'effectuer le rendu de la vue spécifiée.
966 966
      * Fournit simplement une méthode de commodité qui peut être utilisée dans les contrôleurs, les bibliothèques et les routes sous forme de closure.
@@ -975,7 +975,7 @@  discard block
 block discarded – undo
975 975
     }
976 976
 }
977 977
 
978
-if (! function_exists('component')) {
978
+if (!function_exists('component')) {
979 979
     /**
980 980
      * Les composants de vue sont utilisées dans les vues pour insérer des morceaux de HTML qui sont gérés par d'autres classes.
981 981
      *
@@ -991,7 +991,7 @@  discard block
 block discarded – undo
991 991
     }
992 992
 }
993 993
 
994
-if (! function_exists('flash')) {
994
+if (!function_exists('flash')) {
995 995
     /**
996 996
      * Fournisseur d'acces rapide a la classe PHP Flash
997 997
      *
@@ -1023,7 +1023,7 @@  discard block
 block discarded – undo
1023 1023
     }*/
1024 1024
 }
1025 1025
 
1026
-if (! function_exists('geo_ip')) {
1026
+if (!function_exists('geo_ip')) {
1027 1027
     /**
1028 1028
      * Recuperation des coordonnees (pays, ville, etc) d'un utilisateur en fonction de son ip
1029 1029
      */
@@ -1033,7 +1033,7 @@  discard block
 block discarded – undo
1033 1033
     }
1034 1034
 }
1035 1035
 
1036
-if (! function_exists('to_stream')) {
1036
+if (!function_exists('to_stream')) {
1037 1037
     /**
1038 1038
      * Créez un nouveau flux basé sur le type d'entrée.
1039 1039
      *
@@ -1054,7 +1054,7 @@  discard block
 block discarded – undo
1054 1054
     }
1055 1055
 }
1056 1056
 
1057
-if (! function_exists('value')) {
1057
+if (!function_exists('value')) {
1058 1058
     /**
1059 1059
      * Renvoie la valeur par défaut de la valeur donnée.
1060 1060
      */
@@ -1064,7 +1064,7 @@  discard block
 block discarded – undo
1064 1064
     }
1065 1065
 }
1066 1066
 
1067
-if (! function_exists('collect')) {
1067
+if (!function_exists('collect')) {
1068 1068
     /**
1069 1069
      * Créez une collection à partir de la valeur donnée.
1070 1070
      */
@@ -1074,7 +1074,7 @@  discard block
 block discarded – undo
1074 1074
     }
1075 1075
 }
1076 1076
 
1077
-if (! function_exists('with')) {
1077
+if (!function_exists('with')) {
1078 1078
     /**
1079 1079
      * Renvoie la valeur donnée, éventuellement transmise via le rappel donné.
1080 1080
      *
@@ -1086,7 +1086,7 @@  discard block
 block discarded – undo
1086 1086
     }
1087 1087
 }
1088 1088
 
1089
-if (! function_exists('tap')) {
1089
+if (!function_exists('tap')) {
1090 1090
     /**
1091 1091
      * Appelez la Closure donnée avec cette instance puis renvoyez l'instance.
1092 1092
      */
@@ -1096,7 +1096,7 @@  discard block
 block discarded – undo
1096 1096
     }
1097 1097
 }
1098 1098
 
1099
-if (! function_exists('last')) {
1099
+if (!function_exists('last')) {
1100 1100
     /**
1101 1101
      * Recupere le dernier element d'un tableau
1102 1102
      *
@@ -1112,7 +1112,7 @@  discard block
 block discarded – undo
1112 1112
     }
1113 1113
 }
1114 1114
 
1115
-if (! function_exists('invade')) {
1115
+if (!function_exists('invade')) {
1116 1116
     /**
1117 1117
      * Cette classe offre une fonction d'invasion qui vous permettra de lire / écrire des propriétés privées d'un objet.
1118 1118
      * Il vous permettra également de définir, obtenir et appeler des méthodes privées.
Please login to merge, or discard this patch.
src/Cli/Commands/Cache/Clear.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         $config  = config('cache');
54 54
         $handler = $this->argument('driver', $params[0] ?? $config['handler']);
55 55
 
56
-        if (! array_key_exists($handler, $config['valid_handlers'])) {
56
+        if (!array_key_exists($handler, $config['valid_handlers'])) {
57 57
             $this->fail($handler . ' n\'est pas un gestionnaire de cache valide.');
58 58
 
59 59
             return;
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
         $config['handler'] = $handler;
63 63
         $cache             = service('cache', $config);
64 64
 
65
-        if (! $cache->clear()) {
65
+        if (!$cache->clear()) {
66 66
             // @codeCoverageIgnoreStart
67 67
             $this->fail('Erreur lors de l\'effacement du cache.');
68 68
 
Please login to merge, or discard this patch.
src/Cli/Console/Console.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
 
158 158
         foreach ($options as $key => $value) {
159 159
             $key = preg_replace('/^\-\-/', '', $key);
160
-            if (! isset($options[$key])) {
160
+            if (!isset($options[$key])) {
161 161
                 $options[$key] = $value;
162 162
             }
163 163
         }
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
      */
171 171
     public function commandExists(string $commandName): bool
172 172
     {
173
-        return ! empty($this->_commands[$commandName]);
173
+        return !empty($this->_commands[$commandName]);
174 174
     }
175 175
 
176 176
     /**
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
         foreach ($files as $file) {
206 206
             $className = $locator->findQualifiedNameFromPath($file);
207 207
 
208
-            if ($className === false || ! class_exists($className)) {
208
+            if ($className === false || !class_exists($className)) {
209 209
                 continue;
210 210
             }
211 211
 
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
         $class  = new ReflectionClass($className);
232 232
         $logger = $logger ?: service('logger');
233 233
 
234
-        if (! $class->isInstantiable() || ! $class->isSubclassOf(Command::class)) {
234
+        if (!$class->isInstantiable() || !$class->isSubclassOf(Command::class)) {
235 235
             throw CLIException::invalidCommand($className);
236 236
         }
237 237
 
@@ -258,13 +258,13 @@  discard block
 block discarded – undo
258 258
             $value = (array) $value;
259 259
 
260 260
             $description = $value[0];
261
-            if (! is_string($description)) {
261
+            if (!is_string($description)) {
262 262
                 continue;
263 263
             }
264 264
 
265 265
             $default = $value[1] ?? null;
266 266
             $filter  = $value[2] ?? null;
267
-            if ($filter !== null && ! is_callable($filter)) {
267
+            if ($filter !== null && !is_callable($filter)) {
268 268
                 $filter = null;
269 269
             }
270 270
 
@@ -276,7 +276,7 @@  discard block
 block discarded – undo
276 276
             $value = (array) $value;
277 277
 
278 278
             $description = $value[0];
279
-            if (! is_string($description)) {
279
+            if (!is_string($description)) {
280 280
                 continue;
281 281
             }
282 282
 
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
         }
287 287
 
288 288
         $console = $this;
289
-        $action  = function (?array $arguments = [], ?array $options = [], ?bool $suppress = null) use ($instance, $command, $console) {
289
+        $action  = function(?array $arguments = [], ?array $options = [], ?bool $suppress = null) use ($instance, $command, $console) {
290 290
             $this->name(); // ne pas retirer. car en cas, d'absence, cs-fixer mettra cette fonction en static. Et php-cli generera une erreur
291 291
 
292 292
             foreach ($instance->required as $package) {
@@ -297,9 +297,9 @@  discard block
 block discarded – undo
297 297
                 /** @var Interactor $io */
298 298
                 $io = $console->io();
299 299
 
300
-                if (! InstalledVersions::isInstalled($package)) {
300
+                if (!InstalledVersions::isInstalled($package)) {
301 301
                     $io->info('Cette commande nécessite le package "' . $package . '" mais vous ne l\'avez pas', true);
302
-                    if (! $io->confirm('Voulez-vous l\'installer maintenant ?')) {
302
+                    if (!$io->confirm('Voulez-vous l\'installer maintenant ?')) {
303 303
                         return;
304 304
                     }
305 305
 
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
             }
316 316
 
317 317
             $suppress = $suppress ?: $console->suppress;
318
-            if (! $suppress) {
318
+            if (!$suppress) {
319 319
                 $console->start($instance);
320 320
             }
321 321
 
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
 
331 331
             $result = $instance->setOptions($options)->setArguments($arguments)->execute($parameters);
332 332
 
333
-            if (! $suppress) {
333
+            if (!$suppress) {
334 334
                 $console->end();
335 335
             }
336 336
 
@@ -345,7 +345,7 @@  discard block
 block discarded – undo
345 345
 
346 346
     private function registerException(Logger $logger)
347 347
     {
348
-        $this->onException(static function (Throwable $e, int $exitCode) use ($logger): void {
348
+        $this->onException(static function(Throwable $e, int $exitCode) use ($logger): void {
349 349
             $logger->error((string) $e, ['exitCode' => $exitCode, 'klinge' => true]);
350 350
         });
351 351
     }
Please login to merge, or discard this patch.
phpstan-baseline.php 1 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.