getFoo() public method

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