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

getFunction() public method

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

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::getFunction