N°5809 Update laminas/laminas-mail from 2.16.0 to 2.22.0

This commit is contained in:
Pierre Goiffon
2024-01-25 17:24:43 +01:00
parent f3d3ec6ef7
commit 0f39ea8ac7
146 changed files with 4426 additions and 8899 deletions

View File

@@ -4,29 +4,33 @@ declare(strict_types=1);
namespace Laminas\Stdlib;
/**
* @template TKey of string
* @template TValue
*/
interface ParameterObjectInterface
{
/**
* @param string $key
* @param mixed $value
* @param TKey $key
* @param TValue|null $value
* @return void
*/
public function __set($key, $value);
public function __set($key, mixed $value);
/**
* @param string $key
* @return mixed
* @param TKey $key
* @return TValue
*/
public function __get($key);
/**
* @param string $key
* @param TKey $key
* @return bool
*/
public function __isset($key);
/**
* @param string $key
* @param TKey $key
* @return void
*/
public function __unset($key);