mirror of
https://github.com/Combodo/iTop.git
synced 2026-07-18 04:36:36 +02:00
38 lines
583 B
PHP
38 lines
583 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Laminas\Stdlib;
|
|
|
|
/**
|
|
* @template TKey of string
|
|
* @template TValue
|
|
*/
|
|
interface ParameterObjectInterface
|
|
{
|
|
/**
|
|
* @param TKey $key
|
|
* @param TValue|null $value
|
|
* @return void
|
|
*/
|
|
public function __set($key, mixed $value);
|
|
|
|
/**
|
|
* @param TKey $key
|
|
* @return TValue
|
|
*/
|
|
public function __get($key);
|
|
|
|
/**
|
|
* @param TKey $key
|
|
* @return bool
|
|
*/
|
|
public function __isset($key);
|
|
|
|
/**
|
|
* @param TKey $key
|
|
* @return void
|
|
*/
|
|
public function __unset($key);
|
|
}
|