PHPSpec2\Formatter\Presenter\StringPresenter::presentExceptionTraceMethod PHP Method

presentExceptionTraceMethod() protected method

protected presentExceptionTraceMethod ( $class, $type, $method, array $args )
$args array
    protected function presentExceptionTraceMethod($class, $type, $method, array $args)
    {
        $args = array_map(array($this, 'presentValue'), $args);
        return sprintf("   %s%s%s(%s)\n", $class, $type, $method, implode(', ', $args));
    }