A fast and light-weight component library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
355 B

<?php
namespace Twister;
interface ContainerInterface
{
function __set($name, $value);
function &__get($name);
function __isset($name);
function __unset($name);
function &__call($method, $args);
function set($key, $value);
function &get($key);
function has($key);
function &merge($key, array $arr);
function remove($key);
}