comparison core/lib/Drupal/Core/Session/WriteSafeSessionHandlerInterface.php @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
16:c2387f117808 17:129ea1e6d783
12 * 12 *
13 * It is not possible to enforce writing of the session data. This method is 13 * It is not possible to enforce writing of the session data. This method is
14 * only capable of forcibly disabling that session data is written to storage. 14 * only capable of forcibly disabling that session data is written to storage.
15 * 15 *
16 * @param bool $flag 16 * @param bool $flag
17 * TRUE if the session the session is allowed to be written, FALSE 17 * TRUE if the session is allowed to be written, FALSE otherwise.
18 * otherwise.
19 */ 18 */
20 public function setSessionWritable($flag); 19 public function setSessionWritable($flag);
21 20
22 /** 21 /**
23 * Returns whether or not a session may be written to storage. 22 * Returns whether or not a session may be written to storage.
24 * 23 *
25 * @return bool 24 * @return bool
26 * TRUE if the session the session is allowed to be written, FALSE 25 * TRUE if the session is allowed to be written, FALSE otherwise.
27 * otherwise.
28 */ 26 */
29 public function isSessionWritable(); 27 public function isSessionWritable();
30 28
31 } 29 }