Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit b06b93f

Browse filesBrowse files
committed
[HttpFoundation] Remove not existing class member
open() and close() SessionHandlerProxy method suse $this->active that was removed from the parent AbstractProxy class after 2.8.
1 parent dba51b4 commit b06b93f
Copy full SHA for b06b93f

File tree

Expand file treeCollapse file tree

1 file changed

+1
-9
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-9
lines changed

‎src/Symfony/Component/HttpFoundation/Session/Storage/Proxy/SessionHandlerProxy.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpFoundation/Session/Storage/Proxy/SessionHandlerProxy.php
+1-9Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -42,22 +42,14 @@ public function __construct(\SessionHandlerInterface $handler)
4242
*/
4343
public function open($savePath, $sessionName)
4444
{
45-
$return = (bool) $this->handler->open($savePath, $sessionName);
46-
47-
if (true === $return) {
48-
$this->active = true;
49-
}
50-
51-
return $return;
45+
return (bool) $this->handler->open($savePath, $sessionName);
5246
}
5347

5448
/**
5549
* {@inheritdoc}
5650
*/
5751
public function close()
5852
{
59-
$this->active = false;
60-
6153
return (bool) $this->handler->close();
6254
}
6355

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.