From b07e3c36b7959b9879f4ed173c885672187ca9be Mon Sep 17 00:00:00 2001 From: "Barry vd. Heuvel" Date: Sat, 8 Jun 2013 12:45:35 +0200 Subject: [PATCH] Change namespace --- composer.json | 5 +-- .../Reflection/DocBlock.php | 8 ++-- .../Reflection/DocBlock/Context.php | 2 +- .../Reflection/DocBlock/Description.php | 4 +- .../Reflection/DocBlock/Location.php | 2 +- .../Reflection/DocBlock/Serializer.php | 4 +- .../Reflection/DocBlock/Tag.php | 42 +++++++++---------- .../Reflection/DocBlock/Tag/AuthorTag.php | 4 +- .../Reflection/DocBlock/Tag/CoversTag.php | 2 +- .../Reflection/DocBlock/Tag/DeprecatedTag.php | 4 +- .../Reflection/DocBlock/Tag/ExampleTag.php | 4 +- .../Reflection/DocBlock/Tag/LinkTag.php | 4 +- .../Reflection/DocBlock/Tag/MethodTag.php | 4 +- .../Reflection/DocBlock/Tag/ParamTag.php | 4 +- .../DocBlock/Tag/PropertyReadTag.php | 2 +- .../Reflection/DocBlock/Tag/PropertyTag.php | 2 +- .../DocBlock/Tag/PropertyWriteTag.php | 2 +- .../Reflection/DocBlock/Tag/ReturnTag.php | 6 +-- .../Reflection/DocBlock/Tag/SeeTag.php | 4 +- .../Reflection/DocBlock/Tag/SinceTag.php | 4 +- .../Reflection/DocBlock/Tag/SourceTag.php | 4 +- .../Reflection/DocBlock/Tag/ThrowsTag.php | 2 +- .../Reflection/DocBlock/Tag/UsesTag.php | 2 +- .../Reflection/DocBlock/Tag/VarTag.php | 2 +- .../Reflection/DocBlock/Tag/VersionTag.php | 4 +- .../Reflection/DocBlock/Type/Collection.php | 4 +- 26 files changed, 65 insertions(+), 66 deletions(-) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock.php (98%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Context.php (98%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Description.php (98%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Location.php (97%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Serializer.php (98%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Tag.php (87%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Tag/AuthorTag.php (97%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Tag/CoversTag.php (91%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Tag/DeprecatedTag.php (84%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Tag/ExampleTag.php (97%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Tag/LinkTag.php (94%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Tag/MethodTag.php (98%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Tag/ParamTag.php (96%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Tag/PropertyReadTag.php (91%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Tag/PropertyTag.php (91%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Tag/PropertyWriteTag.php (91%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Tag/ReturnTag.php (93%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Tag/SeeTag.php (94%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Tag/SinceTag.php (83%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Tag/SourceTag.php (97%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Tag/ThrowsTag.php (91%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Tag/UsesTag.php (91%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Tag/VarTag.php (91%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Tag/VersionTag.php (96%) rename src/{phpDocumentor => Barryvdh}/Reflection/DocBlock/Type/Collection.php (98%) diff --git a/composer.json b/composer.json index 0971747..aea7daf 100644 --- a/composer.json +++ b/composer.json @@ -1,13 +1,12 @@ { - "name": "phpdocumentor/reflection-docblock", + "name": "barryvdh/reflection-docblock", "type": "library", "license": "MIT", "authors": [ {"name": "Mike van Riel", "email": "mike.vanriel@naenius.com"} ], "require": { - "php": ">=5.3.3", - "dflydev/markdown": "1.0.*" + "php": ">=5.3.3" }, "autoload": { "psr-0": {"phpDocumentor": ["src/"]} diff --git a/src/phpDocumentor/Reflection/DocBlock.php b/src/Barryvdh/Reflection/DocBlock.php similarity index 98% rename from src/phpDocumentor/Reflection/DocBlock.php rename to src/Barryvdh/Reflection/DocBlock.php index b5b165c..d43b8a2 100644 --- a/src/phpDocumentor/Reflection/DocBlock.php +++ b/src/Barryvdh/Reflection/DocBlock.php @@ -10,11 +10,11 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection; +namespace Barryvdh\Reflection; -use phpDocumentor\Reflection\DocBlock\Tag; -use phpDocumentor\Reflection\DocBlock\Context; -use phpDocumentor\Reflection\DocBlock\Location; +use Barryvdh\Reflection\DocBlock\Tag; +use Barryvdh\Reflection\DocBlock\Context; +use Barryvdh\Reflection\DocBlock\Location; /** * Parses the DocBlock for any structure. diff --git a/src/phpDocumentor/Reflection/DocBlock/Context.php b/src/Barryvdh/Reflection/DocBlock/Context.php similarity index 98% rename from src/phpDocumentor/Reflection/DocBlock/Context.php rename to src/Barryvdh/Reflection/DocBlock/Context.php index 81aa83c..bbc97b4 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Context.php +++ b/src/Barryvdh/Reflection/DocBlock/Context.php @@ -10,7 +10,7 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock; +namespace Barryvdh\Reflection\DocBlock; /** * The context in which a DocBlock occurs. diff --git a/src/phpDocumentor/Reflection/DocBlock/Description.php b/src/Barryvdh/Reflection/DocBlock/Description.php similarity index 98% rename from src/phpDocumentor/Reflection/DocBlock/Description.php rename to src/Barryvdh/Reflection/DocBlock/Description.php index 0d6def2..4f61a59 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Description.php +++ b/src/Barryvdh/Reflection/DocBlock/Description.php @@ -10,9 +10,9 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock; +namespace Barryvdh\Reflection\DocBlock; -use phpDocumentor\Reflection\DocBlock; +use Barryvdh\Reflection\DocBlock; /** * Parses a Description of a DocBlock or tag. diff --git a/src/phpDocumentor/Reflection/DocBlock/Location.php b/src/Barryvdh/Reflection/DocBlock/Location.php similarity index 97% rename from src/phpDocumentor/Reflection/DocBlock/Location.php rename to src/Barryvdh/Reflection/DocBlock/Location.php index 966ed44..3d16f7c 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Location.php +++ b/src/Barryvdh/Reflection/DocBlock/Location.php @@ -10,7 +10,7 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock; +namespace Barryvdh\Reflection\DocBlock; /** * The location a DocBlock occurs within a file. diff --git a/src/phpDocumentor/Reflection/DocBlock/Serializer.php b/src/Barryvdh/Reflection/DocBlock/Serializer.php similarity index 98% rename from src/phpDocumentor/Reflection/DocBlock/Serializer.php rename to src/Barryvdh/Reflection/DocBlock/Serializer.php index c161785..6594269 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Serializer.php +++ b/src/Barryvdh/Reflection/DocBlock/Serializer.php @@ -10,9 +10,9 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock; +namespace Barryvdh\Reflection\DocBlock; -use phpDocumentor\Reflection\DocBlock; +use Barryvdh\Reflection\DocBlock; /** * Serializes a DocBlock instance. diff --git a/src/phpDocumentor/Reflection/DocBlock/Tag.php b/src/Barryvdh/Reflection/DocBlock/Tag.php similarity index 87% rename from src/phpDocumentor/Reflection/DocBlock/Tag.php rename to src/Barryvdh/Reflection/DocBlock/Tag.php index a96db09..8665f53 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Tag.php +++ b/src/Barryvdh/Reflection/DocBlock/Tag.php @@ -10,9 +10,9 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock; +namespace Barryvdh\Reflection\DocBlock; -use phpDocumentor\Reflection\DocBlock; +use Barryvdh\Reflection\DocBlock; /** * Parses a tag definition for a DocBlock. @@ -59,43 +59,43 @@ class Tag implements \Reflector */ private static $tagHandlerMappings = array( 'author' - => '\phpDocumentor\Reflection\DocBlock\Tag\AuthorTag', + => '\Barryvdh\Reflection\DocBlock\Tag\AuthorTag', 'covers' - => '\phpDocumentor\Reflection\DocBlock\Tag\CoversTag', + => '\Barryvdh\Reflection\DocBlock\Tag\CoversTag', 'deprecated' - => '\phpDocumentor\Reflection\DocBlock\Tag\DeprecatedTag', + => '\Barryvdh\Reflection\DocBlock\Tag\DeprecatedTag', 'example' - => '\phpDocumentor\Reflection\DocBlock\Tag\ExampleTag', + => '\Barryvdh\Reflection\DocBlock\Tag\ExampleTag', 'link' - => '\phpDocumentor\Reflection\DocBlock\Tag\LinkTag', + => '\Barryvdh\Reflection\DocBlock\Tag\LinkTag', 'method' - => '\phpDocumentor\Reflection\DocBlock\Tag\MethodTag', + => '\Barryvdh\Reflection\DocBlock\Tag\MethodTag', 'param' - => '\phpDocumentor\Reflection\DocBlock\Tag\ParamTag', + => '\Barryvdh\Reflection\DocBlock\Tag\ParamTag', 'property-read' - => '\phpDocumentor\Reflection\DocBlock\Tag\PropertyReadTag', + => '\Barryvdh\Reflection\DocBlock\Tag\PropertyReadTag', 'property' - => '\phpDocumentor\Reflection\DocBlock\Tag\PropertyTag', + => '\Barryvdh\Reflection\DocBlock\Tag\PropertyTag', 'property-write' - => '\phpDocumentor\Reflection\DocBlock\Tag\PropertyWriteTag', + => '\Barryvdh\Reflection\DocBlock\Tag\PropertyWriteTag', 'return' - => '\phpDocumentor\Reflection\DocBlock\Tag\ReturnTag', + => '\Barryvdh\Reflection\DocBlock\Tag\ReturnTag', 'see' - => '\phpDocumentor\Reflection\DocBlock\Tag\SeeTag', + => '\Barryvdh\Reflection\DocBlock\Tag\SeeTag', 'since' - => '\phpDocumentor\Reflection\DocBlock\Tag\SinceTag', + => '\Barryvdh\Reflection\DocBlock\Tag\SinceTag', 'source' - => '\phpDocumentor\Reflection\DocBlock\Tag\SourceTag', + => '\Barryvdh\Reflection\DocBlock\Tag\SourceTag', 'throw' - => '\phpDocumentor\Reflection\DocBlock\Tag\ThrowsTag', + => '\Barryvdh\Reflection\DocBlock\Tag\ThrowsTag', 'throws' - => '\phpDocumentor\Reflection\DocBlock\Tag\ThrowsTag', + => '\Barryvdh\Reflection\DocBlock\Tag\ThrowsTag', 'uses' - => '\phpDocumentor\Reflection\DocBlock\Tag\UsesTag', + => '\Barryvdh\Reflection\DocBlock\Tag\UsesTag', 'var' - => '\phpDocumentor\Reflection\DocBlock\Tag\VarTag', + => '\Barryvdh\Reflection\DocBlock\Tag\VarTag', 'version' - => '\phpDocumentor\Reflection\DocBlock\Tag\VersionTag' + => '\Barryvdh\Reflection\DocBlock\Tag\VersionTag' ); /** diff --git a/src/phpDocumentor/Reflection/DocBlock/Tag/AuthorTag.php b/src/Barryvdh/Reflection/DocBlock/Tag/AuthorTag.php similarity index 97% rename from src/phpDocumentor/Reflection/DocBlock/Tag/AuthorTag.php rename to src/Barryvdh/Reflection/DocBlock/Tag/AuthorTag.php index bacf52e..0e3f809 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Tag/AuthorTag.php +++ b/src/Barryvdh/Reflection/DocBlock/Tag/AuthorTag.php @@ -10,9 +10,9 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock\Tag; +namespace Barryvdh\Reflection\DocBlock\Tag; -use phpDocumentor\Reflection\DocBlock\Tag; +use Barryvdh\Reflection\DocBlock\Tag; /** * Reflection class for an @author tag in a Docblock. diff --git a/src/phpDocumentor/Reflection/DocBlock/Tag/CoversTag.php b/src/Barryvdh/Reflection/DocBlock/Tag/CoversTag.php similarity index 91% rename from src/phpDocumentor/Reflection/DocBlock/Tag/CoversTag.php rename to src/Barryvdh/Reflection/DocBlock/Tag/CoversTag.php index bd31b56..51ce105 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Tag/CoversTag.php +++ b/src/Barryvdh/Reflection/DocBlock/Tag/CoversTag.php @@ -10,7 +10,7 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock\Tag; +namespace Barryvdh\Reflection\DocBlock\Tag; /** * Reflection class for a @covers tag in a Docblock. diff --git a/src/phpDocumentor/Reflection/DocBlock/Tag/DeprecatedTag.php b/src/Barryvdh/Reflection/DocBlock/Tag/DeprecatedTag.php similarity index 84% rename from src/phpDocumentor/Reflection/DocBlock/Tag/DeprecatedTag.php rename to src/Barryvdh/Reflection/DocBlock/Tag/DeprecatedTag.php index 7226316..670a736 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Tag/DeprecatedTag.php +++ b/src/Barryvdh/Reflection/DocBlock/Tag/DeprecatedTag.php @@ -10,9 +10,9 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock\Tag; +namespace Barryvdh\Reflection\DocBlock\Tag; -use phpDocumentor\Reflection\DocBlock\Tag\VersionTag; +use Barryvdh\Reflection\DocBlock\Tag\VersionTag; /** * Reflection class for a @deprecated tag in a Docblock. diff --git a/src/phpDocumentor/Reflection/DocBlock/Tag/ExampleTag.php b/src/Barryvdh/Reflection/DocBlock/Tag/ExampleTag.php similarity index 97% rename from src/phpDocumentor/Reflection/DocBlock/Tag/ExampleTag.php rename to src/Barryvdh/Reflection/DocBlock/Tag/ExampleTag.php index 9173de4..bf26316 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Tag/ExampleTag.php +++ b/src/Barryvdh/Reflection/DocBlock/Tag/ExampleTag.php @@ -10,9 +10,9 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock\Tag; +namespace Barryvdh\Reflection\DocBlock\Tag; -use phpDocumentor\Reflection\DocBlock\Tag; +use Barryvdh\Reflection\DocBlock\Tag; /** * Reflection class for a @example tag in a Docblock. diff --git a/src/phpDocumentor/Reflection/DocBlock/Tag/LinkTag.php b/src/Barryvdh/Reflection/DocBlock/Tag/LinkTag.php similarity index 94% rename from src/phpDocumentor/Reflection/DocBlock/Tag/LinkTag.php rename to src/Barryvdh/Reflection/DocBlock/Tag/LinkTag.php index f79f25d..ee91af9 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Tag/LinkTag.php +++ b/src/Barryvdh/Reflection/DocBlock/Tag/LinkTag.php @@ -10,9 +10,9 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock\Tag; +namespace Barryvdh\Reflection\DocBlock\Tag; -use phpDocumentor\Reflection\DocBlock\Tag; +use Barryvdh\Reflection\DocBlock\Tag; /** * Reflection class for a @link tag in a Docblock. diff --git a/src/phpDocumentor/Reflection/DocBlock/Tag/MethodTag.php b/src/Barryvdh/Reflection/DocBlock/Tag/MethodTag.php similarity index 98% rename from src/phpDocumentor/Reflection/DocBlock/Tag/MethodTag.php rename to src/Barryvdh/Reflection/DocBlock/Tag/MethodTag.php index 3ceea2c..e219d96 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Tag/MethodTag.php +++ b/src/Barryvdh/Reflection/DocBlock/Tag/MethodTag.php @@ -10,9 +10,9 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock\Tag; +namespace Barryvdh\Reflection\DocBlock\Tag; -use phpDocumentor\Reflection\DocBlock\Tag; +use Barryvdh\Reflection\DocBlock\Tag; /** * Reflection class for a @method in a Docblock. diff --git a/src/phpDocumentor/Reflection/DocBlock/Tag/ParamTag.php b/src/Barryvdh/Reflection/DocBlock/Tag/ParamTag.php similarity index 96% rename from src/phpDocumentor/Reflection/DocBlock/Tag/ParamTag.php rename to src/Barryvdh/Reflection/DocBlock/Tag/ParamTag.php index f544a9b..ca9d0e0 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Tag/ParamTag.php +++ b/src/Barryvdh/Reflection/DocBlock/Tag/ParamTag.php @@ -10,9 +10,9 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock\Tag; +namespace Barryvdh\Reflection\DocBlock\Tag; -use phpDocumentor\Reflection\DocBlock\Tag; +use Barryvdh\Reflection\DocBlock\Tag; /** * Reflection class for a @param tag in a Docblock. diff --git a/src/phpDocumentor/Reflection/DocBlock/Tag/PropertyReadTag.php b/src/Barryvdh/Reflection/DocBlock/Tag/PropertyReadTag.php similarity index 91% rename from src/phpDocumentor/Reflection/DocBlock/Tag/PropertyReadTag.php rename to src/Barryvdh/Reflection/DocBlock/Tag/PropertyReadTag.php index 3340602..a5d27aa 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Tag/PropertyReadTag.php +++ b/src/Barryvdh/Reflection/DocBlock/Tag/PropertyReadTag.php @@ -10,7 +10,7 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock\Tag; +namespace Barryvdh\Reflection\DocBlock\Tag; /** * Reflection class for a @property-read tag in a Docblock. diff --git a/src/phpDocumentor/Reflection/DocBlock/Tag/PropertyTag.php b/src/Barryvdh/Reflection/DocBlock/Tag/PropertyTag.php similarity index 91% rename from src/phpDocumentor/Reflection/DocBlock/Tag/PropertyTag.php rename to src/Barryvdh/Reflection/DocBlock/Tag/PropertyTag.php index 288ecff..a440429 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Tag/PropertyTag.php +++ b/src/Barryvdh/Reflection/DocBlock/Tag/PropertyTag.php @@ -10,7 +10,7 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock\Tag; +namespace Barryvdh\Reflection\DocBlock\Tag; /** * Reflection class for a @property tag in a Docblock. diff --git a/src/phpDocumentor/Reflection/DocBlock/Tag/PropertyWriteTag.php b/src/Barryvdh/Reflection/DocBlock/Tag/PropertyWriteTag.php similarity index 91% rename from src/phpDocumentor/Reflection/DocBlock/Tag/PropertyWriteTag.php rename to src/Barryvdh/Reflection/DocBlock/Tag/PropertyWriteTag.php index ec4e866..435ffc2 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Tag/PropertyWriteTag.php +++ b/src/Barryvdh/Reflection/DocBlock/Tag/PropertyWriteTag.php @@ -10,7 +10,7 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock\Tag; +namespace Barryvdh\Reflection\DocBlock\Tag; /** * Reflection class for a @property-write tag in a Docblock. diff --git a/src/phpDocumentor/Reflection/DocBlock/Tag/ReturnTag.php b/src/Barryvdh/Reflection/DocBlock/Tag/ReturnTag.php similarity index 93% rename from src/phpDocumentor/Reflection/DocBlock/Tag/ReturnTag.php rename to src/Barryvdh/Reflection/DocBlock/Tag/ReturnTag.php index 9293db9..015062d 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Tag/ReturnTag.php +++ b/src/Barryvdh/Reflection/DocBlock/Tag/ReturnTag.php @@ -10,10 +10,10 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock\Tag; +namespace Barryvdh\Reflection\DocBlock\Tag; -use phpDocumentor\Reflection\DocBlock\Tag; -use phpDocumentor\Reflection\DocBlock\Type\Collection; +use Barryvdh\Reflection\DocBlock\Tag; +use Barryvdh\Reflection\DocBlock\Type\Collection; /** * Reflection class for a @return tag in a Docblock. diff --git a/src/phpDocumentor/Reflection/DocBlock/Tag/SeeTag.php b/src/Barryvdh/Reflection/DocBlock/Tag/SeeTag.php similarity index 94% rename from src/phpDocumentor/Reflection/DocBlock/Tag/SeeTag.php rename to src/Barryvdh/Reflection/DocBlock/Tag/SeeTag.php index 4f5f22c..32b77df 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Tag/SeeTag.php +++ b/src/Barryvdh/Reflection/DocBlock/Tag/SeeTag.php @@ -10,9 +10,9 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock\Tag; +namespace Barryvdh\Reflection\DocBlock\Tag; -use phpDocumentor\Reflection\DocBlock\Tag; +use Barryvdh\Reflection\DocBlock\Tag; /** * Reflection class for a @see tag in a Docblock. diff --git a/src/phpDocumentor/Reflection/DocBlock/Tag/SinceTag.php b/src/Barryvdh/Reflection/DocBlock/Tag/SinceTag.php similarity index 83% rename from src/phpDocumentor/Reflection/DocBlock/Tag/SinceTag.php rename to src/Barryvdh/Reflection/DocBlock/Tag/SinceTag.php index ba009c4..f5673ea 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Tag/SinceTag.php +++ b/src/Barryvdh/Reflection/DocBlock/Tag/SinceTag.php @@ -10,9 +10,9 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock\Tag; +namespace Barryvdh\Reflection\DocBlock\Tag; -use phpDocumentor\Reflection\DocBlock\Tag\VersionTag; +use Barryvdh\Reflection\DocBlock\Tag\VersionTag; /** * Reflection class for a @since tag in a Docblock. diff --git a/src/phpDocumentor/Reflection/DocBlock/Tag/SourceTag.php b/src/Barryvdh/Reflection/DocBlock/Tag/SourceTag.php similarity index 97% rename from src/phpDocumentor/Reflection/DocBlock/Tag/SourceTag.php rename to src/Barryvdh/Reflection/DocBlock/Tag/SourceTag.php index 3400220..09416e9 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Tag/SourceTag.php +++ b/src/Barryvdh/Reflection/DocBlock/Tag/SourceTag.php @@ -10,9 +10,9 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock\Tag; +namespace Barryvdh\Reflection\DocBlock\Tag; -use phpDocumentor\Reflection\DocBlock\Tag; +use Barryvdh\Reflection\DocBlock\Tag; /** * Reflection class for a @source tag in a Docblock. diff --git a/src/phpDocumentor/Reflection/DocBlock/Tag/ThrowsTag.php b/src/Barryvdh/Reflection/DocBlock/Tag/ThrowsTag.php similarity index 91% rename from src/phpDocumentor/Reflection/DocBlock/Tag/ThrowsTag.php rename to src/Barryvdh/Reflection/DocBlock/Tag/ThrowsTag.php index 58ee44a..fc428ca 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Tag/ThrowsTag.php +++ b/src/Barryvdh/Reflection/DocBlock/Tag/ThrowsTag.php @@ -10,7 +10,7 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock\Tag; +namespace Barryvdh\Reflection\DocBlock\Tag; /** * Reflection class for a @throws tag in a Docblock. diff --git a/src/phpDocumentor/Reflection/DocBlock/Tag/UsesTag.php b/src/Barryvdh/Reflection/DocBlock/Tag/UsesTag.php similarity index 91% rename from src/phpDocumentor/Reflection/DocBlock/Tag/UsesTag.php rename to src/Barryvdh/Reflection/DocBlock/Tag/UsesTag.php index da0d663..572f568 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Tag/UsesTag.php +++ b/src/Barryvdh/Reflection/DocBlock/Tag/UsesTag.php @@ -10,7 +10,7 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock\Tag; +namespace Barryvdh\Reflection\DocBlock\Tag; /** * Reflection class for a @uses tag in a Docblock. diff --git a/src/phpDocumentor/Reflection/DocBlock/Tag/VarTag.php b/src/Barryvdh/Reflection/DocBlock/Tag/VarTag.php similarity index 91% rename from src/phpDocumentor/Reflection/DocBlock/Tag/VarTag.php rename to src/Barryvdh/Reflection/DocBlock/Tag/VarTag.php index 236b2c8..3760c8d 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Tag/VarTag.php +++ b/src/Barryvdh/Reflection/DocBlock/Tag/VarTag.php @@ -10,7 +10,7 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock\Tag; +namespace Barryvdh\Reflection\DocBlock\Tag; /** * Reflection class for a @var tag in a Docblock. diff --git a/src/phpDocumentor/Reflection/DocBlock/Tag/VersionTag.php b/src/Barryvdh/Reflection/DocBlock/Tag/VersionTag.php similarity index 96% rename from src/phpDocumentor/Reflection/DocBlock/Tag/VersionTag.php rename to src/Barryvdh/Reflection/DocBlock/Tag/VersionTag.php index 260f698..dc8e321 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Tag/VersionTag.php +++ b/src/Barryvdh/Reflection/DocBlock/Tag/VersionTag.php @@ -10,9 +10,9 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock\Tag; +namespace Barryvdh\Reflection\DocBlock\Tag; -use phpDocumentor\Reflection\DocBlock\Tag; +use Barryvdh\Reflection\DocBlock\Tag; /** * Reflection class for a @version tag in a Docblock. diff --git a/src/phpDocumentor/Reflection/DocBlock/Type/Collection.php b/src/Barryvdh/Reflection/DocBlock/Type/Collection.php similarity index 98% rename from src/phpDocumentor/Reflection/DocBlock/Type/Collection.php rename to src/Barryvdh/Reflection/DocBlock/Type/Collection.php index 90ead3f..cf8c9f3 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Type/Collection.php +++ b/src/Barryvdh/Reflection/DocBlock/Type/Collection.php @@ -10,9 +10,9 @@ * @link http://phpdoc.org */ -namespace phpDocumentor\Reflection\DocBlock\Type; +namespace Barryvdh\Reflection\DocBlock\Type; -use phpDocumentor\Reflection\DocBlock\Context; +use Barryvdh\Reflection\DocBlock\Context; /** * Collection