Skip to content

Commit 57a64a0

Browse files
committed
Revert "bug #10908 [HttpFoundation] implement session locking for PDO (Tobion)"
This reverts commit 8c71454, reversing changes made to 735e9a4.
1 parent 08bc4d9 commit 57a64a0

File tree

3 files changed

+115
-327
lines changed

3 files changed

+115
-327
lines changed

src/Symfony/Component/HttpFoundation/Resources/stubs/SessionHandlerInterface.php

-12
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,13 @@
1212
/**
1313
* SessionHandlerInterface for PHP < 5.4
1414
*
15-
* The order in which these methods are invoked by PHP are:
16-
* 1. open [session_start]
17-
* 2. read
18-
* 3. gc [optional depending on probability settings: gc_probability / gc_divisor]
19-
* 4. destroy [optional when session_regenerate_id(true) is used]
20-
* 5. write [session_write_close] or destroy [session_destroy]
21-
* 6. close
22-
*
2315
* Extensive documentation can be found at php.net, see links:
2416
*
2517
* @see http://php.net/sessionhandlerinterface
2618
* @see http://php.net/session.customhandler
2719
* @see http://php.net/session-set-save-handler
2820
*
2921
* @author Drak <drak@zikula.org>
30-
* @author Tobias Schultze <http://tobion.de>
3122
*/
3223
interface SessionHandlerInterface
3324
{
@@ -66,9 +57,6 @@ public function read($sessionId);
6657
/**
6758
* Writes the session data to the storage.
6859
*
69-
* Care, the session ID passed to write() can be different from the one previously
70-
* received in read() when the session ID changed due to session_regenerate_id().
71-
*
7260
* @see http://php.net/sessionhandlerinterface.write
7361
*
7462
* @param string $sessionId Session ID , see http://php.net/function.session-id

0 commit comments

Comments
 (0)