big update : session authentification guard, some exemaples and docs

This commit is contained in:
Emmanuel ROY 2021-02-17 13:39:05 +01:00
commit 5be76d38f6
30 changed files with 163 additions and 60 deletions

View file

@ -12,7 +12,7 @@ C'est un choix applicatif qu'il faut faire au moment de la contruction de l'appl
Vous devez instancier le fichier `application/include/controlleurs/{Name}HttpReponse.php`
qui est une classe peut implémenter `MVC\Classe\Implement\RestReponse` ou `MVC\Classe\Implement\HttpReponse` sachant que la différence se situe au niveau des méthodes qu'il doit instancier.
*Voici un exemple avec `RestResponse`
##Voici un exemple avec `RestResponse`
```php
<?php
@ -58,7 +58,7 @@ class NameHttpReponse extends RestReponse
}
```
*voici un exemple avec `HttpResponse`
##voici un exemple avec `HttpResponse`
```php
<?php