@@ -28,7 +28,7 @@ discard block  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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 | *  | 
                                                        
@@ -1090,7 +1090,7 @@ discard block  | 
                                                    ||
| 1090 | 1090 | }  | 
                                                        
| 1091 | 1091 | }  | 
                                                        
| 1092 | 1092 | |
| 1093 | -if (! function_exists('invade')) { | 
                                                        |
| 1093 | +if (!function_exists('invade')) { | 
                                                        |
| 1094 | 1094 | /**  | 
                                                        
| 1095 | 1095 | * Cette classe offre une fonction d'invasion qui vous permettra de lire / écrire des propriétés privées d'un objet.  | 
                                                        
| 1096 | 1096 | * Il vous permettra également de définir, obtenir et appeler des méthodes privées.  |