We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dba51b4 commit b06b93fCopy full SHA for b06b93f
src/Symfony/Component/HttpFoundation/Session/Storage/Proxy/SessionHandlerProxy.php
@@ -42,22 +42,14 @@ public function __construct(\SessionHandlerInterface $handler)
42
*/
43
public function open($savePath, $sessionName)
44
{
45
- $return = (bool) $this->handler->open($savePath, $sessionName);
46
-
47
- if (true === $return) {
48
- $this->active = true;
49
- }
50
51
- return $return;
+ return (bool) $this->handler->open($savePath, $sessionName);
52
}
53
54
/**
55
* {@inheritdoc}
56
57
public function close()
58
59
- $this->active = false;
60
61
return (bool) $this->handler->close();
62
63
0 commit comments