ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
CollectionInterface.php
Go to the documentation of this file.
1<?php
9namespace Slim\Interfaces;
10
17interface CollectionInterface extends \ArrayAccess, \Countable, \IteratorAggregate
18{
19 public function set($key, $value);
20
21 public function get($key, $default = null);
22
23 public function replace(array $items);
24
25 public function all();
26
27 public function has($key);
28
29 public function remove($key);
30
31 public function clear();
32}
An exception for terminatinating execution or to throw for unit testing.
$key
Definition: croninfo.php:18
Slim Framework (https://slimframework.com)