We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It will be nice to have Phalcon\Session\AdapterInterface::destroy() compatible with php SessionHandlerInterface::destroy(string $session_id) :D
Ex:
use Phalcon\Session\Adapter; use Phalcon\Session\AdapterInterface; use Phalcon\Session\Exception; class MySessionAdapter extends Adapter implements AdapterInterface, SessionHandlerInterface { public function __construct($options = null) { session_set_save_handler($this, true); } // phalcon version // public function destroy(){} // session handler interface version // public function destroy($session_id){} }
Note: tested under phalcon 1.2.3, php 5.4.x
CMIIW
The text was updated successfully, but these errors were encountered:
+1. This might be useful for functionality such as logging out someone else when we want to
Sorry, something went wrong.
PR submitted
I guess this one can be closed now?
7ae2827
No branches or pull requests
It will be nice to have Phalcon\Session\AdapterInterface::destroy() compatible with
php SessionHandlerInterface::destroy(string $session_id) :D
Ex:
Note: tested under phalcon 1.2.3, php 5.4.x
CMIIW
The text was updated successfully, but these errors were encountered: