X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCore%2FSession%2FISession.php;h=2b2bf32e57eaac2d92deb2cc29c9c0452a7d08ed;hb=2a431b580f2e8f6a596e84175932e793678cde63;hp=a2046e915c63c21b4a3e18e230384460586beee5;hpb=cad7e534a42219f277928dfa53ac0a2b9a31a562;p=friendica.git diff --git a/src/Core/Session/ISession.php b/src/Core/Session/ISession.php index a2046e915c..2b2bf32e57 100644 --- a/src/Core/Session/ISession.php +++ b/src/Core/Session/ISession.php @@ -1,4 +1,23 @@ . + * + */ namespace Friendica\Core\Session; @@ -29,7 +48,8 @@ interface ISession * Handle the case where session_start() hasn't been called and the super global isn't available. * * @param string $name - * @param mixed $defaults + * @param mixed $defaults + * * @return mixed */ public function get(string $name, $defaults = null); @@ -39,7 +59,7 @@ interface ISession * Overrides value of existing key. * * @param string $name - * @param mixed $value + * @param mixed $value */ public function set(string $name, $value); @@ -63,9 +83,4 @@ interface ISession * Clears the current session array */ public function clear(); - - /** - * Kills the "Friendica" cookie and all session data - */ - public function delete(); }