X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/pie.php?a=blobdiff_plain;f=includes%2Fsession%2FSession.php;h=3dc8299be941e4277f8c3775c7315dfaefcbcba8;hb=130ec2523df12a3ca2fe0d422163696d09fcea08;hp=e9a03f20f4d82690bdfc9d897f6e257f73c05591;hpb=eb0758923dfe6c99b9c9a2a8b9436409e44551de;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/session/Session.php b/includes/session/Session.php index e9a03f20f4..3dc8299be9 100644 --- a/includes/session/Session.php +++ b/includes/session/Session.php @@ -291,7 +291,7 @@ final class Session implements \Countable, \Iterator, \ArrayAccess { /** * Fetch a value from the session * @param string|int $key - * @param mixed $default Returned if $this->exists( $key ) would be false + * @param mixed|null $default Returned if $this->exists( $key ) would be false * @return mixed */ public function get( $key, $default = null ) { @@ -522,7 +522,7 @@ final class Session implements \Countable, \Iterator, \ArrayAccess { /** * Fetch a value from the session that was set with self::setSecret() * @param string|int $key - * @param mixed $default Returned if $this->exists( $key ) would be false or decryption fails + * @param mixed|null $default Returned if $this->exists( $key ) would be false or decryption fails * @return mixed */ public function getSecret( $key, $default = null ) {