mageekguy\atoum\php\call::getArguments PHP Method

getArguments() public method

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

Usage Example

Beispiel #1
0
 public function decorate(php\call $call)
 {
     $string = $call->getFunction() . '(' . $this->argumentsDecorator->decorate($call->getArguments()) . ')';
     $object = $call->getObject();
     if ($object !== null) {
         $string = get_class($object) . '::' . $string;
     }
     return $string;
 }