Go\Proxy\TraitProxy::__toString PHP Method

__toString() public method

{@inheritDoc}
public __toString ( )
    public function __toString()
    {
        $classCode = $this->class->getDocComment() . "\n" . 'trait ' . $this->name . "\n" . "{\n" . $this->indent('use ' . join(', ', array(-1 => $this->parentClassName) + $this->traits) . $this->getMethodAliasesCode()) . "\n" . $this->indent(join("\n", $this->methodsCode)) . "\n" . "}";
        return $classCode . PHP_EOL . '\\' . __CLASS__ . "::injectJoinPoints('" . $this->class->name . "'," . var_export($this->advices, true) . ");";
    }