getArguments() public method

Return the arguments provided by the configuration handlers.
public getArguments ( ) : array
return array An array of arguments.
Example #1
0
 public function testUnshiftArgument()
 {
     $configs = new Components_Configs();
     $configs->unshiftArgument('test');
     $arguments = $configs->getArguments();
     $this->assertEquals('test', $arguments[0]);
 }