Passed
Push — main ( a119e3...c5cc50 )
by
unknown
16:30 queued 13:36
created
src/Helpers/common.php 1 patch
Spacing   +68 added lines, -68 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 
29 29
 // ================================= FONCTIONS UTIILITAIRES ESSENTIELLES ================================= //
30 30
 
31
-if (! function_exists('env')) {
31
+if (!function_exists('env')) {
32 32
     /**
33 33
      * Obtient une variable d'environnement à partir des sources disponibles et fournit une émulation
34 34
      * pour les variables d'environnement non prises en charge ou incohérentes
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     }
45 45
 }
46 46
 
47
-if (! function_exists('helper')) {
47
+if (!function_exists('helper')) {
48 48
     /**
49 49
      * Charge un fichier d'aide en mémoire. Prend en charge les assistants d'espace de noms,
50 50
      * à la fois dans et hors du répertoire 'helpers' d'un répertoire à espace de noms.
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     }
61 61
 }
62 62
 
63
-if (! function_exists('model')) {
63
+if (!function_exists('model')) {
64 64
     /**
65 65
      * Simple maniere d'obtenir un modele.
66 66
      *
@@ -70,13 +70,13 @@  discard block
 block discarded – undo
70 70
      *
71 71
      * @return T
72 72
      */
73
-    function model(array|string $name, ?ConnectionInterface &$conn = null)
73
+    function model(array|string $name, ?ConnectionInterface&$conn = null)
74 74
     {
75 75
         return Load::model($name, $conn);
76 76
     }
77 77
 }
78 78
 
79
-if (! function_exists('service')) {
79
+if (!function_exists('service')) {
80 80
     /**
81 81
      * Permet un accès plus propre au fichier de configuration des services.
82 82
      * Renvoie toujours une instance SHARED de la classe, donc l'appel de la fonction plusieurs fois renvera toujours la même instance.
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
     }
98 98
 }
99 99
 
100
-if (! function_exists('single_service')) {
100
+if (!function_exists('single_service')) {
101 101
     /**
102 102
      * Autoriser l'accès propre à un service.
103 103
      * Renvoie toujours une nouvelle instance de la classe.
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
     }
118 118
 }
119 119
 
120
-if (! function_exists('show404')) {
120
+if (!function_exists('show404')) {
121 121
     /**
122 122
      * Afficher une page 404 introuvable dans le navigateur
123 123
      */
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
     }
128 128
 }
129 129
 
130
-if (! function_exists('command')) {
130
+if (!function_exists('command')) {
131 131
     /**
132 132
      * Exécute une seule commande.
133 133
      * Entrée attendue dans une seule chaîne comme celle qui serait utilisée sur la ligne de commande elle-même :
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
     }
190 190
 }
191 191
 
192
-if (! function_exists('config')) {
192
+if (!function_exists('config')) {
193 193
     /**
194 194
      * GET/SET App config
195 195
      *
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
     }
218 218
 }
219 219
 
220
-if (! function_exists('logger')) {
220
+if (!function_exists('logger')) {
221 221
     /**
222 222
      * Une méthode de commodité pour les événements de journalisation via le système Log.
223 223
      *
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
     }
248 248
 }
249 249
 
250
-if (! function_exists('cache')) {
250
+if (!function_exists('cache')) {
251 251
     /**
252 252
      * Une méthode pratique qui donne accès au cache
253 253
      * objet. Si aucun paramètre n'est fourni, renverra l'objet,
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
     }
278 278
 }
279 279
 
280
-if (! function_exists('cookie')) {
280
+if (!function_exists('cookie')) {
281 281
     /**
282 282
      * Une méthode pratique qui donne accès à l'objet cookie.
283 283
      * Si aucun paramètre n'est fourni, renverra l'objet,
@@ -305,7 +305,7 @@  discard block
 block discarded – undo
305 305
     }
306 306
 }
307 307
 
308
-if (! function_exists('session')) {
308
+if (!function_exists('session')) {
309 309
     /**
310 310
      * Une méthode pratique pour accéder à l'instance de session, ou un élément qui a été défini dans la session.
311 311
      *
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
 
331 331
 // =========================== FONCTIONS DE PREVENTION D'ATTAQUE =========================== //
332 332
 
333
-if (! function_exists('esc')) {
333
+if (!function_exists('esc')) {
334 334
     /**
335 335
      * Effectue un simple échappement automatique des données pour des raisons de sécurité.
336 336
      * Pourrait envisager de rendre cela plus complexe à une date ultérieure.
@@ -357,7 +357,7 @@  discard block
 block discarded – undo
357 357
     }
358 358
 }
359 359
 
360
-if (! function_exists('h')) {
360
+if (!function_exists('h')) {
361 361
     /**
362 362
      * Méthode pratique pour htmlspecialchars.
363 363
      *
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
     }
377 377
 }
378 378
 
379
-if (! function_exists('purify')) {
379
+if (!function_exists('purify')) {
380 380
     /**
381 381
      * Purifiez l'entrée à l'aide de la classe autonome HTMLPurifier.
382 382
      * Utilisez facilement plusieurs configurations de purificateur.
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
     }
393 393
 }
394 394
 
395
-if (! function_exists('remove_invisible_characters')) {
395
+if (!function_exists('remove_invisible_characters')) {
396 396
     /**
397 397
      * Supprimer les caractères invisibles
398 398
      *
@@ -405,7 +405,7 @@  discard block
 block discarded – undo
405 405
     }
406 406
 }
407 407
 
408
-if (! function_exists('stringify_attributes')) {
408
+if (!function_exists('stringify_attributes')) {
409 409
     /**
410 410
      * Chaîner les attributs à utiliser dans les balises HTML.
411 411
      *
@@ -419,7 +419,7 @@  discard block
 block discarded – undo
419 419
 
420 420
 // ================================= FONCTIONS DE FORMULAIRE ================================= //
421 421
 
422
-if (! function_exists('csrf_token')) {
422
+if (!function_exists('csrf_token')) {
423 423
     /**
424 424
      * Renvoie la valeur de hachage actuelle pour la protection CSRF.
425 425
      * 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.
@@ -430,7 +430,7 @@  discard block
 block discarded – undo
430 430
     }
431 431
 }
432 432
 
433
-if (! function_exists('csrf_field')) {
433
+if (!function_exists('csrf_field')) {
434 434
     /**
435 435
      * Génère un champ input caché à utiliser dans les formulaires générés manuellement.
436 436
      */
@@ -438,11 +438,11 @@  discard block
 block discarded – undo
438 438
     {
439 439
         $name = config('security.csrf_token_name', '_token');
440 440
 
441
-        return '<input type="hidden"' . (! empty($id) ? ' id="' . esc($id, 'attr') . '"' : '') . ' name="' . $name . '" value="' . csrf_token() . '">';
441
+        return '<input type="hidden"' . (!empty($id) ? ' id="' . esc($id, 'attr') . '"' : '') . ' name="' . $name . '" value="' . csrf_token() . '">';
442 442
     }
443 443
 }
444 444
 
445
-if (! function_exists('csrf_meta')) {
445
+if (!function_exists('csrf_meta')) {
446 446
     /**
447 447
      * Génère une balise méta à utiliser dans les appels javascript.
448 448
      */
@@ -450,11 +450,11 @@  discard block
 block discarded – undo
450 450
     {
451 451
         $name = config('security.csrf_header_name', 'X-CSRF-TOKEN');
452 452
 
453
-        return '<meta' . (! empty($id) ? ' id="' . esc($id, 'attr') . '"' : '') . ' name="' . $name . '" content="' . csrf_token() . '">';
453
+        return '<meta' . (!empty($id) ? ' id="' . esc($id, 'attr') . '"' : '') . ' name="' . $name . '" content="' . csrf_token() . '">';
454 454
     }
455 455
 }
456 456
 
457
-if (! function_exists('method_field')) {
457
+if (!function_exists('method_field')) {
458 458
     /**
459 459
      * Générer un champ de formulaire pour usurper le verbe HTTP utilisé par les formulaires.
460 460
      */
@@ -466,7 +466,7 @@  discard block
 block discarded – undo
466 466
 
467 467
 // ================================= FONCTIONS D'ENVIRONNEMENT D'EXECUTION ================================= //
468 468
 
469
-if (! function_exists('environment')) {
469
+if (!function_exists('environment')) {
470 470
     /**
471 471
      * Renvoi l'environnement d'execution actuel ou determine si on est dans un environnement specifie
472 472
      *
@@ -504,7 +504,7 @@  discard block
 block discarded – undo
504 504
     }
505 505
 }
506 506
 
507
-if (! function_exists('on_dev')) {
507
+if (!function_exists('on_dev')) {
508 508
     /**
509 509
      * Testez pour voir si nous sommes dans un environnement de développement.
510 510
      */
@@ -518,7 +518,7 @@  discard block
 block discarded – undo
518 518
     }
519 519
 }
520 520
 
521
-if (! function_exists('on_prod')) {
521
+if (!function_exists('on_prod')) {
522 522
     /**
523 523
      * Testez pour voir si nous sommes dans un environnement de production.
524 524
      */
@@ -532,7 +532,7 @@  discard block
 block discarded – undo
532 532
     }
533 533
 }
534 534
 
535
-if (! function_exists('on_test')) {
535
+if (!function_exists('on_test')) {
536 536
     /**
537 537
      * Testez pour voir si nous sommes dans un environnement de test
538 538
      */
@@ -542,7 +542,7 @@  discard block
 block discarded – undo
542 542
     }
543 543
 }
544 544
 
545
-if (! function_exists('is_cli')) {
545
+if (!function_exists('is_cli')) {
546 546
     /**
547 547
      * Testez pour voir si une demande a été faite à partir de la ligne de commande.
548 548
      */
@@ -552,7 +552,7 @@  discard block
 block discarded – undo
552 552
     }
553 553
 }
554 554
 
555
-if (! function_exists('is_php')) {
555
+if (!function_exists('is_php')) {
556 556
     /**
557 557
      * Détermine si la version actuelle de PHP est égale ou supérieure à la valeur fournie.
558 558
      */
@@ -562,7 +562,7 @@  discard block
 block discarded – undo
562 562
     }
563 563
 }
564 564
 
565
-if (! function_exists('is_windows')) {
565
+if (!function_exists('is_windows')) {
566 566
     /**
567 567
      * Déterminez si l'environnement actuel est basé sur Windows.
568 568
      */
@@ -572,7 +572,7 @@  discard block
 block discarded – undo
572 572
     }
573 573
 }
574 574
 
575
-if (! function_exists('is_https')) {
575
+if (!function_exists('is_https')) {
576 576
     /**
577 577
      * Determines if the application is accessed via an encrypted * (HTTPS) connection.
578 578
      */
@@ -582,7 +582,7 @@  discard block
 block discarded – undo
582 582
     }
583 583
 }
584 584
 
585
-if (! function_exists('is_localfile')) {
585
+if (!function_exists('is_localfile')) {
586 586
     /**
587 587
      * Vérifiez si le fichier auquel vous souhaitez accéder est un fichier local de votre application ou non
588 588
      */
@@ -592,11 +592,11 @@  discard block
 block discarded – undo
592 592
             return true;
593 593
         }
594 594
 
595
-        return ! preg_match('#^(https?://)#i', $name);
595
+        return !preg_match('#^(https?://)#i', $name);
596 596
     }
597 597
 }
598 598
 
599
-if (! function_exists('is_online')) {
599
+if (!function_exists('is_online')) {
600 600
     /**
601 601
      * Tester si l'application s'exécute en local ou en ligne.
602 602
      */
@@ -606,7 +606,7 @@  discard block
 block discarded – undo
606 606
     }
607 607
 }
608 608
 
609
-if (! function_exists('is_connected')) {
609
+if (!function_exists('is_connected')) {
610 610
     /**
611 611
      * Verifie si l'utilisateur a une connexion internet active.
612 612
      */
@@ -616,7 +616,7 @@  discard block
 block discarded – undo
616 616
     }
617 617
 }
618 618
 
619
-if (! function_exists('is_ajax_request')) {
619
+if (!function_exists('is_ajax_request')) {
620 620
     /**
621 621
      * Testez pour voir si une requête contient l'en-tête HTTP_X_REQUESTED_WITH.
622 622
      */
@@ -626,7 +626,7 @@  discard block
 block discarded – undo
626 626
     }
627 627
 }
628 628
 
629
-if (! function_exists('redirection')) {
629
+if (!function_exists('redirection')) {
630 630
     /**
631 631
      * Redirige l'utilisateur
632 632
      */
@@ -640,7 +640,7 @@  discard block
 block discarded – undo
640 640
     }
641 641
 }
642 642
 
643
-if (! function_exists('redirect')) {
643
+if (!function_exists('redirect')) {
644 644
     /**
645 645
      * Méthode pratique qui fonctionne avec la $request globale actuelle et
646 646
      * l'instance $router à rediriger à l'aide de routes nommées et le routage inversé
@@ -654,7 +654,7 @@  discard block
 block discarded – undo
654 654
     {
655 655
         $redirection = Services::redirection();
656 656
 
657
-        if (! empty($uri)) {
657
+        if (!empty($uri)) {
658 658
             return $redirection->route($uri);
659 659
         }
660 660
 
@@ -662,7 +662,7 @@  discard block
 block discarded – undo
662 662
     }
663 663
 }
664 664
 
665
-if (! function_exists('back')) {
665
+if (!function_exists('back')) {
666 666
     /**
667 667
      * Retourne a la page precedente
668 668
      *
@@ -674,7 +674,7 @@  discard block
 block discarded – undo
674 674
     }
675 675
 }
676 676
 
677
-if (! function_exists('link_to')) {
677
+if (!function_exists('link_to')) {
678 678
     /**
679 679
      * Étant donné une chaîne de contrôleur/méthode et tous les paramètres,
680 680
      * tentera de créer l'URL relative à la route correspondante.
@@ -694,7 +694,7 @@  discard block
 block discarded – undo
694 694
     }
695 695
 }
696 696
 
697
-if (! function_exists('clean_path')) {
697
+if (!function_exists('clean_path')) {
698 698
     /**
699 699
      * Une méthode pratique pour nettoyer les chemins pour
700 700
      * une sortie plus belle. Utile pour les exceptions
@@ -726,7 +726,7 @@  discard block
 block discarded – undo
726 726
     }
727 727
 }
728 728
 
729
-if (! function_exists('old')) {
729
+if (!function_exists('old')) {
730 730
     /**
731 731
      * Fournit l'accès à "entrée ancienne" qui a été définie dans la session lors d'un redirect()-withInput().
732 732
      *
@@ -739,7 +739,7 @@  discard block
 block discarded – undo
739 739
     function old(string $key, $default = null, $escape = 'html')
740 740
     {
741 741
         // Assurez-vous de charger la session
742
-        if (session_status() === PHP_SESSION_NONE && ! on_test()) {
742
+        if (session_status() === PHP_SESSION_NONE && !on_test()) {
743 743
             session(); // @codeCoverageIgnore
744 744
         }
745 745
 
@@ -754,7 +754,7 @@  discard block
 block discarded – undo
754 754
 
755 755
 // ================================= FONCTIONS DE DEBOGAGE ================================= //
756 756
 
757
-if (! function_exists('deprecationWarning')) {
757
+if (!function_exists('deprecationWarning')) {
758 758
     /**
759 759
      * Méthode d'assistance pour générer des avertissements d'obsolescence
760 760
      *
@@ -770,7 +770,7 @@  discard block
 block discarded – undo
770 770
     }
771 771
 }
772 772
 
773
-if (! function_exists('pr')) {
773
+if (!function_exists('pr')) {
774 774
     /**
775 775
      * print_r() convenience function.
776 776
      *
@@ -792,7 +792,7 @@  discard block
 block discarded – undo
792 792
     }
793 793
 }
794 794
 
795
-if (! function_exists('pj')) {
795
+if (!function_exists('pj')) {
796 796
     /**
797 797
      * json pretty print convenience function.
798 798
      *
@@ -813,7 +813,7 @@  discard block
 block discarded – undo
813 813
     }
814 814
 }
815 815
 
816
-if (! function_exists('trigger_warning')) {
816
+if (!function_exists('trigger_warning')) {
817 817
     /**
818 818
      * Déclenche un E_USER_WARNING.
819 819
      */
@@ -825,7 +825,7 @@  discard block
 block discarded – undo
825 825
 
826 826
 // ================================= FONCTIONS DIVERSES ================================= //
827 827
 
828
-if (! function_exists('force_https')) {
828
+if (!function_exists('force_https')) {
829 829
     /**
830 830
      * Utilisé pour forcer l'accès à une page via HTTPS.
831 831
      * Utilise une redirection standard, plus définira l'en-tête HSTS
@@ -852,7 +852,7 @@  discard block
 block discarded – undo
852 852
 
853 853
         // Si la session est active, nous devons régénérer
854 854
         // l'ID de session pour des raisons de sécurité.
855
-        if (! on_test() && session_status() === PHP_SESSION_ACTIVE) {
855
+        if (!on_test() && session_status() === PHP_SESSION_ACTIVE) {
856 856
             Services::session()->regenerate(); // @codeCoverageIgnore
857 857
         }
858 858
 
@@ -868,7 +868,7 @@  discard block
 block discarded – undo
868 868
     }
869 869
 }
870 870
 
871
-if (! function_exists('get_type_name')) {
871
+if (!function_exists('get_type_name')) {
872 872
     /**
873 873
      * Renvoie la classe d'objets ou le type var de ce n'est pas un objet
874 874
      *
@@ -882,7 +882,7 @@  discard block
 block discarded – undo
882 882
     }
883 883
 }
884 884
 
885
-if (! function_exists('ip_address')) {
885
+if (!function_exists('ip_address')) {
886 886
     /**
887 887
      * Renvoie l'adresse IP de l'utilisateur actuel
888 888
      */
@@ -892,7 +892,7 @@  discard block
 block discarded – undo
892 892
     }
893 893
 }
894 894
 
895
-if (! function_exists('is_really_writable')) {
895
+if (!function_exists('is_really_writable')) {
896 896
     /**
897 897
      * Tests d'inscriptibilité des fichiers
898 898
      */
@@ -902,7 +902,7 @@  discard block
 block discarded – undo
902 902
     }
903 903
 }
904 904
 
905
-if (! function_exists('lang')) {
905
+if (!function_exists('lang')) {
906 906
     /**
907 907
      * Une méthode pratique pour traduire une chaîne ou un tableau d'entrées et formater
908 908
      * le résultat avec le MessageFormatter de l'extension intl.
@@ -913,7 +913,7 @@  discard block
 block discarded – undo
913 913
     }
914 914
 }
915 915
 
916
-if (! function_exists('__')) {
916
+if (!function_exists('__')) {
917 917
     /**
918 918
      * Une méthode pratique pour traduire une chaîne ou un tableau d'entrées et formater
919 919
      * le résultat avec le MessageFormatter de l'extension intl.
@@ -926,7 +926,7 @@  discard block
 block discarded – undo
926 926
     }
927 927
 }
928 928
 
929
-if (! function_exists('namespace_split')) {
929
+if (!function_exists('namespace_split')) {
930 930
     /**
931 931
      * Séparez l'espace de noms du nom de classe.
932 932
      *
@@ -947,7 +947,7 @@  discard block
 block discarded – undo
947 947
     }
948 948
 }
949 949
 
950
-if (! function_exists('view_exist')) {
950
+if (!function_exists('view_exist')) {
951 951
     /**
952 952
      * Verifie si un fichier de vue existe. Utile pour limiter les failles include
953 953
      */
@@ -957,7 +957,7 @@  discard block
 block discarded – undo
957 957
     }
958 958
 }
959 959
 
960
-if (! function_exists('view')) {
960
+if (!function_exists('view')) {
961 961
     /**
962 962
      * Charge une vue
963 963
      *
@@ -969,7 +969,7 @@  discard block
 block discarded – undo
969 969
     }
970 970
 }
971 971
 
972
-if (! function_exists('flash')) {
972
+if (!function_exists('flash')) {
973 973
     /**
974 974
      * Fournisseur d'acces rapide a la classe PHP Flash
975 975
      *
@@ -1001,7 +1001,7 @@  discard block
 block discarded – undo
1001 1001
     }*/
1002 1002
 }
1003 1003
 
1004
-if (! function_exists('geo_ip')) {
1004
+if (!function_exists('geo_ip')) {
1005 1005
     /**
1006 1006
      * Recuperation des coordonnees (pays, ville, etc) d'un utilisateur en fonction de son ip
1007 1007
      */
@@ -1011,7 +1011,7 @@  discard block
 block discarded – undo
1011 1011
     }
1012 1012
 }
1013 1013
 
1014
-if (! function_exists('to_stream')) {
1014
+if (!function_exists('to_stream')) {
1015 1015
     /**
1016 1016
      * Créez un nouveau flux basé sur le type d'entrée.
1017 1017
      *
@@ -1032,7 +1032,7 @@  discard block
 block discarded – undo
1032 1032
     }
1033 1033
 }
1034 1034
 
1035
-if (! function_exists('value')) {
1035
+if (!function_exists('value')) {
1036 1036
     /**
1037 1037
      * Renvoie la valeur par défaut de la valeur donnée.
1038 1038
      */
@@ -1042,7 +1042,7 @@  discard block
 block discarded – undo
1042 1042
     }
1043 1043
 }
1044 1044
 
1045
-if (! function_exists('collect')) {
1045
+if (!function_exists('collect')) {
1046 1046
     /**
1047 1047
      * Créez une collection à partir de la valeur donnée.
1048 1048
      */
@@ -1052,7 +1052,7 @@  discard block
 block discarded – undo
1052 1052
     }
1053 1053
 }
1054 1054
 
1055
-if (! function_exists('with')) {
1055
+if (!function_exists('with')) {
1056 1056
     /**
1057 1057
      * Renvoie la valeur donnée, éventuellement transmise via le rappel donné.
1058 1058
      *
@@ -1064,7 +1064,7 @@  discard block
 block discarded – undo
1064 1064
     }
1065 1065
 }
1066 1066
 
1067
-if (! function_exists('tap')) {
1067
+if (!function_exists('tap')) {
1068 1068
     /**
1069 1069
      * Appelez la Closure donnée avec cette instance puis renvoyez l'instance.
1070 1070
      */
@@ -1074,7 +1074,7 @@  discard block
 block discarded – undo
1074 1074
     }
1075 1075
 }
1076 1076
 
1077
-if (! function_exists('last')) {
1077
+if (!function_exists('last')) {
1078 1078
     /**
1079 1079
      * Recupere le dernier element d'un tableau
1080 1080
      */
@@ -1084,7 +1084,7 @@  discard block
 block discarded – undo
1084 1084
     }
1085 1085
 }
1086 1086
 
1087
-if (! function_exists('invade')) {
1087
+if (!function_exists('invade')) {
1088 1088
     /**
1089 1089
      * Cette classe offre une fonction d'invasion qui vous permettra de lire / écrire des propriétés privées d'un objet.
1090 1090
      * Il vous permettra également de définir, obtenir et appeler des méthodes privées.
Please login to merge, or discard this patch.
src/View/Adapters/NativeAdapter.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
         // Enregistrer les variables actuelles
122 122
         $renderVars = $this->renderVars;
123 123
 
124
-        $output = (function (): string {
124
+        $output = (function(): string {
125 125
             extract($this->tempData);
126 126
             ob_start();
127 127
             include $this->renderVars['file'];
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
 
143 143
         $this->logPerformance($this->renderVars['start'], microtime(true), $this->renderVars['view']);
144 144
 
145
-        if (($this->debug && (! isset($options['debug']) || $options['debug'] === true))) {
145
+        if (($this->debug && (!isset($options['debug']) || $options['debug'] === true))) {
146 146
             if (in_array(ViewsCollector::class, config('toolbar.collectors'), true)) {
147 147
                 // Nettoyer nos noms de chemins pour les rendre un peu plus propres
148 148
                 $this->renderVars['file'] = clean_path($this->renderVars['file']);
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
         $saveData ??= $this->saveData;
179 179
         $this->prepareTemplateData($saveData);
180 180
 
181
-        $output = (function (string $view): string {
181
+        $output = (function(string $view): string {
182 182
             extract($this->tempData);
183 183
             ob_start();
184 184
             eval('?>' . $view);
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
         $section = array_pop($this->sectionStack);
322 322
 
323 323
         // Assurez-vous qu'un tableau existe afin que nous puissions stocker plusieurs entrées pour cela.
324
-        if (! array_key_exists($section, $this->sections)) {
324
+        if (!array_key_exists($section, $this->sections)) {
325 325
             $this->sections[$section] = [];
326 326
         }
327 327
 
@@ -357,7 +357,7 @@  discard block
 block discarded – undo
357 357
      */
358 358
     public function show(string $sectionName, bool $preserve = false)
359 359
     {
360
-        if (! isset($this->sections[$sectionName])) {
360
+        if (!isset($this->sections[$sectionName])) {
361 361
             echo '';
362 362
 
363 363
             return;
@@ -400,7 +400,7 @@  discard block
 block discarded – undo
400 400
      *
401 401
      * @alias self::insert()
402 402
      */
403
-    public function include(string $view, ?array $data = [], ?array $options = null, ?bool $saveData = null): string
403
+    public function include(string $view, ?array $data = [], ?array $options = null, ?bool $saveData = null) : string
404 404
     {
405 405
         return $this->insert($view, $data, $options, $saveData);
406 406
     }
@@ -629,11 +629,11 @@  discard block
 block discarded – undo
629 629
      */
630 630
     public function stylesBundle(): void
631 631
     {
632
-        if (! empty($this->_lib_styles)) {
632
+        if (!empty($this->_lib_styles)) {
633 633
             lib_styles(array_unique($this->_lib_styles));
634 634
         }
635 635
 
636
-        if (! empty($this->_styles)) {
636
+        if (!empty($this->_styles)) {
637 637
             styles(array_unique($this->_styles));
638 638
         }
639 639
 
@@ -665,11 +665,11 @@  discard block
 block discarded – undo
665 665
      */
666 666
     public function scriptsBundle(): void
667 667
     {
668
-        if (! empty($this->_lib_scripts)) {
668
+        if (!empty($this->_lib_scripts)) {
669 669
             lib_scripts(array_unique($this->_lib_scripts));
670 670
         }
671 671
 
672
-        if (! empty($this->_scripts)) {
672
+        if (!empty($this->_scripts)) {
673 673
             scripts(array_unique($this->_scripts));
674 674
         }
675 675
 
Please login to merge, or discard this patch.
src/Http/Response.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -459,7 +459,7 @@  discard block
 block discarded – undo
459 459
         $this->_streamMode   = $options['streamMode'] ?? $this->_streamMode;
460 460
 
461 461
         if (isset($options['stream'])) {
462
-            if (! $options['stream'] instanceof StreamInterface) {
462
+            if (!$options['stream'] instanceof StreamInterface) {
463 463
                 throw new InvalidArgumentException('Stream option must be an object that implements StreamInterface');
464 464
             }
465 465
             $this->stream = $options['stream'];
@@ -475,7 +475,7 @@  discard block
 block discarded – undo
475 475
             $this->_setStatus($options['status']);
476 476
         }
477 477
 
478
-        if (! isset($options['charset'])) {
478
+        if (!isset($options['charset'])) {
479 479
             $options['charset'] = config('app.charset');
480 480
         }
481 481
         $this->_charset = $options['charset'];
@@ -523,7 +523,7 @@  discard block
 block discarded – undo
523 523
             $charset = true;
524 524
         }
525 525
 
526
-        if ($charset && ! str_contains($type, ';')) {
526
+        if ($charset && !str_contains($type, ';')) {
527 527
             $this->_setHeader('Content-Type', "{$type}; charset={$this->_charset}");
528 528
         } else {
529 529
             $this->_setHeader('Content-Type', $type);
@@ -603,7 +603,7 @@  discard block
 block discarded – undo
603 603
     protected function _clearHeader(string $header): void
604 604
     {
605 605
         $normalized = strtolower($header);
606
-        if (! isset($this->headerNames[$normalized])) {
606
+        if (!isset($this->headerNames[$normalized])) {
607 607
             return;
608 608
         }
609 609
         $original = $this->headerNames[$normalized];
@@ -670,7 +670,7 @@  discard block
 block discarded – undo
670 670
             throw HttpException::invalidStatusCode($code);
671 671
         }
672 672
 
673
-        if (! array_key_exists($code, $this->_statusCodes) && empty($reasonPhrase)) {
673
+        if (!array_key_exists($code, $this->_statusCodes) && empty($reasonPhrase)) {
674 674
             throw HttPException::unkownStatusCode($code);
675 675
         }
676 676
 
@@ -763,7 +763,7 @@  discard block
 block discarded – undo
763 763
         if ($mapped) {
764 764
             return is_array($mapped) ? current($mapped) : $mapped;
765 765
         }
766
-        if (! str_contains($contentType, '/')) {
766
+        if (!str_contains($contentType, '/')) {
767 767
             throw new InvalidArgumentException(sprintf('`%s` est un content type invalide.', $contentType));
768 768
         }
769 769
 
@@ -846,7 +846,7 @@  discard block
 block discarded – undo
846 846
      */
847 847
     public function withCache($since, $time = '+1 day'): static
848 848
     {
849
-        if (! is_int($time)) {
849
+        if (!is_int($time)) {
850 850
             $time = strtotime($time);
851 851
             if ($time === false) {
852 852
                 throw new InvalidArgumentException(
@@ -1314,7 +1314,7 @@  discard block
 block discarded – undo
1314 1314
      */
1315 1315
     public function getCookie(string $name): ?array
1316 1316
     {
1317
-        if (! $this->hasCookie($name)) {
1317
+        if (!$this->hasCookie($name)) {
1318 1318
             return null;
1319 1319
         }
1320 1320
 
@@ -1326,7 +1326,7 @@  discard block
 block discarded – undo
1326 1326
      */
1327 1327
     public function hasCookie(string $name, ?string $value = null): bool
1328 1328
     {
1329
-        if (! $this->_cookies->has($name)) {
1329
+        if (!$this->_cookies->has($name)) {
1330 1330
             return false;
1331 1331
         }
1332 1332
 
@@ -1403,7 +1403,7 @@  discard block
 block discarded – undo
1403 1403
 
1404 1404
         $extension = strtolower($file->getExtension());
1405 1405
         $mapped    = $this->getMimeType($extension);
1406
-        if ((! $extension || ! $mapped) && $options['download'] === null) {
1406
+        if ((!$extension || !$mapped) && $options['download'] === null) {
1407 1407
             $options['download'] = true;
1408 1408
         }
1409 1409
 
@@ -1465,12 +1465,12 @@  discard block
 block discarded – undo
1465 1465
         if (str_contains($path, '../') || str_contains($path, '..\\')) {
1466 1466
             throw new LoadException('The requested file contains `..` and will not be read.');
1467 1467
         }
1468
-        if (! is_file($path)) {
1468
+        if (!is_file($path)) {
1469 1469
             $path = APP_PATH . $path;
1470 1470
         }
1471 1471
 
1472 1472
         $file = new SplFileInfo($path);
1473
-        if (! $file->isFile() || ! $file->isReadable()) {
1473
+        if (!$file->isFile() || !$file->isReadable()) {
1474 1474
             if (on_dev()) {
1475 1475
                 throw new LoadException(sprintf('The requested file %s was not found or not readable', $path));
1476 1476
             }
Please login to merge, or discard this patch.
src/Http/UploadedFileFactory.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      */
64 64
     public static function makeUploadedFile(array $spec): UploadedFile
65 65
     {
66
-        if (! isset($spec['tmp_name']) || ! isset($spec['size']) || ! isset($spec['error'])) {
66
+        if (!isset($spec['tmp_name']) || !isset($spec['size']) || !isset($spec['error'])) {
67 67
             throw new InvalidArgumentException(sprintf(
68 68
                 '$spec fourni à %s DOIT contenir chacune des clés "tmp_name", "size", et "error" ; une ou plusieurs étaient manquantes',
69 69
                 __FUNCTION__
@@ -103,13 +103,13 @@  discard block
 block discarded – undo
103 103
          *
104 104
          * @return array[]|UploadedFile[]
105 105
          */
106
-        $recursiveNormalize = static function (
106
+        $recursiveNormalize = static function(
107 107
             array $tmpNameTree,
108 108
             array $sizeTree,
109 109
             array $errorTree,
110 110
             ?array $nameTree = null,
111 111
             ?array $typeTree = null
112
-        ) use (&$recursiveNormalize): array {
112
+        ) use (&$recursiveNormalize) : array {
113 113
             $normalized = [];
114 114
 
115 115
             foreach ($tmpNameTree as $key => $value) {
@@ -147,11 +147,11 @@  discard block
 block discarded – undo
147 147
          *
148 148
          * @return UploadedFile[]
149 149
          */
150
-        $normalizeUploadedFileSpecification = static function (array $files = []) use (&$recursiveNormalize): array {
150
+        $normalizeUploadedFileSpecification = static function(array $files = []) use (&$recursiveNormalize): array {
151 151
             if (
152
-                ! isset($files['tmp_name']) || ! is_array($files['tmp_name'])
153
-                                            || ! isset($files['size']) || ! is_array($files['size'])
154
-                                            || ! isset($files['error']) || ! is_array($files['error'])
152
+                !isset($files['tmp_name']) || !is_array($files['tmp_name'])
153
+                                            || !isset($files['size']) || !is_array($files['size'])
154
+                                            || !isset($files['error']) || !is_array($files['error'])
155 155
             ) {
156 156
                 throw new InvalidArgumentException(sprintf(
157 157
                     'Les fichiers fournis à %s DOIVENT contenir chacune des clés "tmp_name", "size" et "error",
Please login to merge, or discard this patch.
src/Http/Concerns/InteractsWithInput.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
         $input = $this->all();
88 88
 
89 89
         foreach ($keys as $value) {
90
-            if (! Arr::has($input, $value)) {
90
+            if (!Arr::has($input, $value)) {
91 91
                 return false;
92 92
             }
93 93
         }
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
         $keys = is_array($key) ? $key : func_get_args();
150 150
 
151 151
         foreach ($keys as $value) {
152
-            if (! $this->isEmptyString($value)) {
152
+            if (!$this->isEmptyString($value)) {
153 153
                 return false;
154 154
             }
155 155
         }
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
     {
199 199
         $keys = is_array($key) ? $key : func_get_args();
200 200
 
201
-        return ! $this->has($keys);
201
+        return !$this->has($keys);
202 202
     }
203 203
 
204 204
     /**
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
     {
227 227
         $value = $this->input($key);
228 228
 
229
-        return ! is_bool($value) && ! is_array($value) && trim((string) $value) === '';
229
+        return !is_bool($value) && !is_array($value) && trim((string) $value) === '';
230 230
     }
231 231
 
232 232
     /**
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
     {
247 247
         $input = array_replace_recursive($this->input(), $this->allFiles());
248 248
 
249
-        if (! $keys) {
249
+        if (!$keys) {
250 250
             return $input;
251 251
         }
252 252
 
@@ -341,9 +341,9 @@  discard block
 block discarded – undo
341 341
     public function enum(string $key, $enumClass)
342 342
     {
343 343
         if ($this->isNotFilled($key)
344
-            || ! function_exists('enum_exists')
345
-            || ! enum_exists($enumClass)
346
-            || ! method_exists($enumClass, 'tryFrom')) {
344
+            || !function_exists('enum_exists')
345
+            || !enum_exists($enumClass)
346
+            || !method_exists($enumClass, 'tryFrom')) {
347 347
             return null;
348 348
         }
349 349
 
@@ -457,7 +457,7 @@  discard block
 block discarded – undo
457 457
      */
458 458
     public function hasFile(string $key): bool
459 459
     {
460
-        if (! is_array($files = $this->file($key))) {
460
+        if (!is_array($files = $this->file($key))) {
461 461
             $files = [$files];
462 462
         }
463 463
 
Please login to merge, or discard this patch.
src/Http/ServerRequest.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
         $this->cookies = $config['cookies'];
232 232
 
233 233
         if (isset($config['uri'])) {
234
-            if (! $config['uri'] instanceof UriInterface) {
234
+            if (!$config['uri'] instanceof UriInterface) {
235 235
                 throw new FrameworkException('The `uri` key must be an instance of ' . UriInterface::class);
236 236
             }
237 237
             $uri = $config['uri'];
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
         $this->stream = $stream;
267 267
 
268 268
         $post = $config['post'];
269
-        if (! (is_array($post) || is_object($post) || $post === null)) {
269
+        if (!(is_array($post) || is_object($post) || $post === null)) {
270 270
             throw new InvalidArgumentException(sprintf(
271 271
                 'La clé `post` doit être un tableau, un objet ou null. On a obtenu `%s` à la place.',
272 272
                 get_debug_type($post)
@@ -449,7 +449,7 @@  discard block
 block discarded – undo
449 449
         }
450 450
 
451 451
         $type = strtolower($type);
452
-        if (! isset(static::$_detectors[$type])) {
452
+        if (!isset(static::$_detectors[$type])) {
453 453
             return false;
454 454
         }
455 455
         if ($args) {
@@ -601,7 +601,7 @@  discard block
 block discarded – undo
601 601
     public function isAll(array $types): bool
602 602
     {
603 603
         foreach ($types as $type) {
604
-            if (! $this->is($type)) {
604
+            if (!$this->is($type)) {
605 605
                 return false;
606 606
             }
607 607
         }
@@ -705,7 +705,7 @@  discard block
 block discarded – undo
705 705
     protected function normalizeHeaderName(string $name): string
706 706
     {
707 707
         $name = str_replace('-', '_', strtoupper($name));
708
-        if (! in_array($name, ['CONTENT_LENGTH', 'CONTENT_TYPE'], true)) {
708
+        if (!in_array($name, ['CONTENT_LENGTH', 'CONTENT_TYPE'], true)) {
709 709
             $name = 'HTTP_' . $name;
710 710
         }
711 711
 
@@ -891,7 +891,7 @@  discard block
 block discarded – undo
891 891
     {
892 892
         $new = clone $this;
893 893
 
894
-        if (! preg_match('/^[!#$%&\'*+.^_`\|~0-9a-z-]+$/i', $method)) {
894
+        if (!preg_match('/^[!#$%&\'*+.^_`\|~0-9a-z-]+$/i', $method)) {
895 895
             throw new InvalidArgumentException(sprintf(
896 896
                 'Méthode HTTP non prise en charge "%s" fournie',
897 897
                 $method
@@ -1153,7 +1153,7 @@  discard block
 block discarded – undo
1153 1153
                 }
1154 1154
             }
1155 1155
 
1156
-            if (! isset($accept[$prefValue])) {
1156
+            if (!isset($accept[$prefValue])) {
1157 1157
                 $accept[$prefValue] = [];
1158 1158
             }
1159 1159
             if ($prefValue) {
@@ -1231,7 +1231,7 @@  discard block
 block discarded – undo
1231 1231
         if ($name === null) {
1232 1232
             return $this->data;
1233 1233
         }
1234
-        if (! is_array($this->data)) {
1234
+        if (!is_array($this->data)) {
1235 1235
             return $default;
1236 1236
         }
1237 1237
 
@@ -1371,7 +1371,7 @@  discard block
 block discarded – undo
1371 1371
      */
1372 1372
     public function withProtocolVersion(string $version): static
1373 1373
     {
1374
-        if (! preg_match('/^(1\.[01]|2(\.[0])?)$/', $version)) {
1374
+        if (!preg_match('/^(1\.[01]|2(\.[0])?)$/', $version)) {
1375 1375
             throw new InvalidArgumentException(sprintf('Version de protocole `%s` non prise en charge fournie.', $version));
1376 1376
         }
1377 1377
         $new           = clone $this;
@@ -1393,7 +1393,7 @@  discard block
 block discarded – undo
1393 1393
     public function getEnv(string $key, ?string $default = null): ?string
1394 1394
     {
1395 1395
         $key = strtoupper($key);
1396
-        if (! array_key_exists($key, $this->_environment) || null === $this->_environment[$key]) {
1396
+        if (!array_key_exists($key, $this->_environment) || null === $this->_environment[$key]) {
1397 1397
             $this->_environment[$key] = env($key, $default);
1398 1398
         }
1399 1399
 
@@ -1610,7 +1610,7 @@  discard block
 block discarded – undo
1610 1610
         $file = Arr::get($this->uploadedFiles, $path);
1611 1611
         if (is_array($file)) {
1612 1612
             foreach ($file as $f) {
1613
-                if (! ($f instanceof UploadedFile)) {
1613
+                if (!($f instanceof UploadedFile)) {
1614 1614
                     return null;
1615 1615
                 }
1616 1616
             }
@@ -1618,7 +1618,7 @@  discard block
 block discarded – undo
1618 1618
             return $file;
1619 1619
         }
1620 1620
 
1621
-        if (! ($file instanceof UploadedFileInterface)) {
1621
+        if (!($file instanceof UploadedFileInterface)) {
1622 1622
             return null;
1623 1623
         }
1624 1624
 
@@ -1666,7 +1666,7 @@  discard block
 block discarded – undo
1666 1666
                 continue;
1667 1667
             }
1668 1668
 
1669
-            if (! $file instanceof UploadedFileInterface) {
1669
+            if (!$file instanceof UploadedFileInterface) {
1670 1670
                 throw new InvalidArgumentException("Fichier invalide à `{$path}{$key}`");
1671 1671
             }
1672 1672
         }
@@ -1717,7 +1717,7 @@  discard block
 block discarded – undo
1717 1717
         }
1718 1718
 
1719 1719
         $host = $uri->getHost();
1720
-        if (! $host) {
1720
+        if (!$host) {
1721 1721
             return $new;
1722 1722
         }
1723 1723
         $port = $uri->getPort();
@@ -1825,7 +1825,7 @@  discard block
 block discarded – undo
1825 1825
         $validLocales = config('app.supported_locales');
1826 1826
         // S'il ne s'agit pas d'un paramètre régional valide, définissez-le
1827 1827
         // aux paramètres régionaux par défaut du site.
1828
-        if (! in_array($locale, $validLocales, true)) {
1828
+        if (!in_array($locale, $validLocales, true)) {
1829 1829
             $locale = config('app.language');
1830 1830
         }
1831 1831
 
Please login to merge, or discard this patch.
src/Http/ServerRequestFactory.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
             $override = true;
97 97
         }
98 98
 
99
-        if ($override && ! in_array($request->getMethod(), ['PUT', 'POST', 'DELETE', 'PATCH'], true)) {
99
+        if ($override && !in_array($request->getMethod(), ['PUT', 'POST', 'DELETE', 'PATCH'], true)) {
100 100
             $parsedBody = [];
101 101
         }
102 102
 
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
         $request = $request->withUploadedFiles($files);
115 115
 
116 116
         $parsedBody = $request->getParsedBody();
117
-        if (! is_array($parsedBody)) {
117
+        if (!is_array($parsedBody)) {
118 118
             return $request;
119 119
         }
120 120
 
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
         }
169 169
 
170 170
         // Si la valeur HTTP_AUTHORIZATION est déjà définie, ou si le callback n'est pas appelable, nous renvoyons les parameters server sans changements
171
-        if (isset($server['HTTP_AUTHORIZATION']) || ! is_callable($apacheRequestHeaderCallback)) {
171
+        if (isset($server['HTTP_AUTHORIZATION']) || !is_callable($apacheRequestHeaderCallback)) {
172 172
             return $server;
173 173
         }
174 174
 
Please login to merge, or discard this patch.
src/Http/CorsBuilder.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 
58 58
     public function isCorsRequest(ServerRequestInterface $request): bool
59 59
     {
60
-        return $request->hasHeader('Origin') && ! $this->isSameHost($request);
60
+        return $request->hasHeader('Origin') && !$this->isSameHost($request);
61 61
     }
62 62
 
63 63
     public function isPreflightRequest(ServerRequestInterface $request): bool
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
             return true;
95 95
         }
96 96
 
97
-        if (! $request->hasHeader('Origin')) {
97
+        if (!$request->hasHeader('Origin')) {
98 98
             return false;
99 99
         }
100 100
 
@@ -127,9 +127,9 @@  discard block
 block discarded – undo
127 127
 
128 128
     public function varyHeader(ResponseInterface $response, $header): ResponseInterface
129 129
     {
130
-        if (! $response->hasHeader('Vary')) {
130
+        if (!$response->hasHeader('Vary')) {
131 131
             $response = $response->withHeader('Vary', $header);
132
-        } elseif (! in_array($header, explode(', ', $response->getHeaderLine('Vary')), true)) {
132
+        } elseif (!in_array($header, explode(', ', $response->getHeaderLine('Vary')), true)) {
133 133
             $response = $response->withHeader('Vary', $response->getHeaderLine('Vary') . ', ' . $header);
134 134
         }
135 135
 
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
 
139 139
     protected function configureAllowedOrigin(ServerRequestInterface $request, ResponseInterface $response): ResponseInterface
140 140
     {
141
-        if ($this->options['allowedOrigins'] === true && ! $this->options['supportsCredentials']) {
141
+        if ($this->options['allowedOrigins'] === true && !$this->options['supportsCredentials']) {
142 142
             // Sûr+cacheable, tout autoriser
143 143
             $response = $response->withHeader('Access-Control-Allow-Origin', '*');
144 144
         } elseif ($this->isSingleOriginAllowed()) {
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
 
159 159
     protected function isSingleOriginAllowed(): bool
160 160
     {
161
-        if ($this->options['allowedOrigins'] === true || ! empty($this->options['allowedOriginsPatterns'])) {
161
+        if ($this->options['allowedOrigins'] === true || !empty($this->options['allowedOriginsPatterns'])) {
162 162
             return false;
163 163
         }
164 164
 
Please login to merge, or discard this patch.
src/Middlewares/Cors.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@
 block discarded – undo
138 138
             $response = $this->cors->varyHeader($response, 'Access-Control-Request-Method');
139 139
         }
140 140
 
141
-        if (! $response->hasHeader('Access-Control-Allow-Origin')) {
141
+        if (!$response->hasHeader('Access-Control-Allow-Origin')) {
142 142
             $response = $this->cors->addActualRequestHeaders($request, $response);
143 143
         }
144 144
 
Please login to merge, or discard this patch.