remove unused namespaces

This commit is contained in:
TomasVotruba
2017-11-30 10:27:01 +01:00
committed by Jaap van Otterdijk
parent b2e816c8ad
commit 154c85b680
5 changed files with 2 additions and 4 deletions
-1
View File
@@ -15,7 +15,6 @@ namespace phpDocumentor\Reflection\DocBlock;
use phpDocumentor\Reflection\DocBlock\Tags\Formatter;
use phpDocumentor\Reflection\DocBlock\Tags\Formatter\PassthroughFormatter;
use Webmozart\Assert\Assert;
/**
* Object representing to description for a DocBlock.
-1
View File
@@ -14,7 +14,6 @@
namespace phpDocumentor\Reflection\DocBlock;
use phpDocumentor\Reflection\DocBlock;
use Webmozart\Assert\Assert;
/**
* Converts a DocBlock back from an object to a complete DocComment including Asterisks.
-1
View File
@@ -13,7 +13,6 @@
namespace phpDocumentor\Reflection\DocBlock\Tags;
use Webmozart\Assert\Assert;
/**
* Reflection class for an {@}author tag in a Docblock.
+1 -1
View File
@@ -68,7 +68,7 @@ class Generic extends BaseTag implements Factory\StaticMethod
*/
public function __toString(): string
{
return ($this->description ? $this->description->render() : '');
return $this->description ? $this->description->render() : '';
}
/**