get() public method

Get a value
public get ( unknown $key, $default = null, $delimiter = '/' )
$key unknown
コード例 #1
0
ファイル: ContainerTest.php プロジェクト: kohkimakimoto/altax
 public function testDelete()
 {
     $container = new Container();
     $container->set("foo", "bar");
     $container->delete("foo");
     $this->assertEquals(null, $container->get("foo"));
 }