Skip to content
Snippets Groups Projects
Unverified Commit 97e05f0c authored by Tim van Dijen's avatar Tim van Dijen Committed by GitHub
Browse files

Fix improper use of 'self' keyword

parent 8968ea1f
No related branches found
No related tags found
No related merge requests found
...@@ -183,7 +183,7 @@ class SessionHandlerPHP extends SessionHandler ...@@ -183,7 +183,7 @@ class SessionHandlerPHP extends SessionHandler
*/ */
public function getCookieSessionId() public function getCookieSessionId()
{ {
if (!self::hasSessionCookie()) { if (!$this->hasSessionCookie()) {
return null; // there's no session cookie, can't return ID return null; // there's no session cookie, can't return ID
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment