mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-07 01:54:12 +01: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);
|
|
}
|