N°5122 - Update libs to new PHP requirements

This commit is contained in:
Molkobain
2022-08-08 14:10:26 +02:00
parent 30021d9236
commit 57c36d0e51
585 changed files with 62279 additions and 20427 deletions

View File

@@ -1,10 +1,6 @@
<?php
/**
* @see https://github.com/laminas/laminas-stdlib for the canonical source repository
* @copyright https://github.com/laminas/laminas-stdlib/blob/master/COPYRIGHT.md
* @license https://github.com/laminas/laminas-stdlib/blob/master/LICENSE.md New BSD License
*/
declare(strict_types=1);
namespace Laminas\Stdlib;
@@ -25,7 +21,7 @@ interface ParametersInterface extends ArrayAccess, Countable, Serializable, Trav
*
* @param array $values
*/
public function __construct(array $values = null);
public function __construct(?array $values = null);
/**
* From array
@@ -42,7 +38,7 @@ interface ParametersInterface extends ArrayAccess, Countable, Serializable, Trav
*
* Allow deserialization from raw body; e.g., for PUT requests
*
* @param $string
* @param string $string
* @return mixed
*/
public function fromString($string);