diff --git a/src/DocBlock/Tags/Return_.php b/src/DocBlock/Tags/Return_.php index 1795257..f021b60 100644 --- a/src/DocBlock/Tags/Return_.php +++ b/src/DocBlock/Tags/Return_.php @@ -59,6 +59,6 @@ final class Return_ extends TagWithType implements Factory\StaticMethod $type = $this->type ? '' . $this->type : 'mixed'; - return $type . ($description !== '' ? ($type !== '' ? ' ' : '') . $description : ''); + return $type . ($description !== '' ? ' ' . $description : ''); } }