You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//! L'encapsulation est le fait de cacher le plus d'infos possible et de fournir une interface a l'utilisateur pour pouvoir acceder a des informations qui sont cachees
class Encapsulation {
private $cookie;
private $session;
public function __construct(String $cookie, String $session)