mageekguy\atoum\test\adapter\call::getArguments PHP Method

getArguments() public method

public getArguments ( )
    public function getArguments()
    {
        return $this->arguments;
    }

Usage Example

Beispiel #1
0
 public function decorate(call $call)
 {
     $string = '';
     $function = $call->getFunction();
     if ($function !== null) {
         $string = $function . '(';
         $arguments = $call->getArguments();
         if ($arguments === null) {
             $string .= '*';
         } else {
             $string .= $this->argumentsDecorator->decorate($call->getArguments());
         }
         $string .= ')';
     }
     return $string;
 }
All Usage Examples Of mageekguy\atoum\test\adapter\call::getArguments