ScriptFUSIONTest\Porter\Options\TestOptions::getFoo PHP Метод

getFoo() публичный Метод

public getFoo ( )
    public function getFoo()
    {
        return $this->get('foo');
    }

Usage Example

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