getFoo() 공개 메소드

public getFoo ( )
 public function testGetReference()
 {
     $this->options->setFoo(['bar' => 'bar', 'baz' => 'baz']);
     $this->options->removeFooKey('bar');
     self::assertSame(['baz' => 'baz'], $this->options->getFoo());
 }