Fix phpdoc return types

This commit is contained in:
Clemens Schwaighofer
2024-12-23 11:26:50 +09:00
parent d1e65c702e
commit 8d0036eaac
3 changed files with 7 additions and 7 deletions

View File

@@ -363,7 +363,7 @@ class Session
* set the auto write close flag * set the auto write close flag
* *
* @param bool $flag * @param bool $flag
* @return void * @return Session
*/ */
public function setAutoWriteClose(bool $flag): Session public function setAutoWriteClose(bool $flag): Session
{ {
@@ -514,7 +514,7 @@ class Session
* *
* @param string $name array name in _SESSION * @param string $name array name in _SESSION
* @param mixed $value value to set (can be anything) * @param mixed $value value to set (can be anything)
* @return void * @return Session
*/ */
public function set(string $name, mixed $value): Session public function set(string $name, mixed $value): Session
{ {
@@ -579,12 +579,12 @@ class Session
* unset one _SESSION entry 'name' if exists * unset one _SESSION entry 'name' if exists
* *
* @param string $name _SESSION key name to remove * @param string $name _SESSION key name to remove
* @return void * @return Session
*/ */
public function unset(string $name): Session public function unset(string $name): Session
{ {
if (!isset($_SESSION[$name])) { if (!isset($_SESSION[$name])) {
return; return $this;
} }
$this->restartSession(); $this->restartSession();
unset($_SESSION[$name]); unset($_SESSION[$name]);

View File

@@ -256,7 +256,7 @@ class AsymmetricAnonymousEncryption
* sets the private key for encryption * sets the private key for encryption
* *
* @param string $key_pair Key pair in hex * @param string $key_pair Key pair in hex
* @return void * @return AsymmetricAnonymousEncryption
* @throws \UnexpectedValueException key pair empty * @throws \UnexpectedValueException key pair empty
*/ */
public function setKeyPair( public function setKeyPair(
@@ -309,7 +309,7 @@ class AsymmetricAnonymousEncryption
* extract the public key from the key pair * extract the public key from the key pair
* *
* @param string $public_key Public Key in hex * @param string $public_key Public Key in hex
* @return void * @return AsymmetricAnonymousEncryption
* @throws \UnexpectedValueException public key empty * @throws \UnexpectedValueException public key empty
*/ */
public function setPublicKey(string $public_key): AsymmetricAnonymousEncryption public function setPublicKey(string $public_key): AsymmetricAnonymousEncryption

View File

@@ -209,7 +209,7 @@ class SymmetricEncryption
* set a new key for encryption * set a new key for encryption
* *
* @param string $key * @param string $key
* @return void * @return SymmetricEncryption
* @throws \UnexpectedValueException key cannot be empty * @throws \UnexpectedValueException key cannot be empty
*/ */
public function setKey( public function setKey(