removeFooKey() public method

public removeFooKey ( $child )
コード例 #1
0
 public function testGetReference()
 {
     $this->options->setFoo(['bar' => 'bar', 'baz' => 'baz']);
     $this->options->removeFooKey('bar');
     self::assertSame(['baz' => 'baz'], $this->options->getFoo());
 }