X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2Fsession%2FSession.php;h=23d9ab383830b8925d29098227ac00c2309275d2;hb=729be8690bc28a32e3f2d9fdb936d6fd1661beb9;hp=12f16b662eb0dc50548d9b0b63ecac81a9e1161b;hpb=6d9704caefde82e494a8eeffe7abee5978f9f7b1;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/session/Session.php b/includes/session/Session.php index 12f16b662e..23d9ab3838 100644 --- a/includes/session/Session.php +++ b/includes/session/Session.php @@ -654,6 +654,7 @@ final class Session implements \Countable, \Iterator, \ArrayAccess { /** * @note Despite the name, this seems to be intended to implement isset() * rather than array_key_exists(). So do that. + * @inheritDoc */ public function offsetExists( $offset ) { $data = &$this->backend->getData(); @@ -666,6 +667,7 @@ final class Session implements \Countable, \Iterator, \ArrayAccess { * data to detect such changes. * @note Accessing a nonexistent key via this mechanism causes that key to * be created with a null value, and does not raise a PHP warning. + * @inheritDoc */ public function &offsetGet( $offset ) { $data = &$this->backend->getData();