mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 18:48:51 +02:00
N°5122 - Update libs to new PHP requirements
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user