Skip to content

Commit b07e3c3

Browse files
committed
Change namespace
1 parent 163dd78 commit b07e3c3

26 files changed

+65
-66
lines changed

composer.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
{
2-
"name": "phpdocumentor/reflection-docblock",
2+
"name": "barryvdh/reflection-docblock",
33
"type": "library",
44
"license": "MIT",
55
"authors": [
66
{"name": "Mike van Riel", "email": "mike.vanriel@naenius.com"}
77
],
88
"require": {
9-
"php": ">=5.3.3",
10-
"dflydev/markdown": "1.0.*"
9+
"php": ">=5.3.3"
1110
},
1211
"autoload": {
1312
"psr-0": {"phpDocumentor": ["src/"]}

src/phpDocumentor/Reflection/DocBlock.php renamed to src/Barryvdh/Reflection/DocBlock.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
* @link http://phpdoc.org
1111
*/
1212

13-
namespace phpDocumentor\Reflection;
13+
namespace Barryvdh\Reflection;
1414

15-
use phpDocumentor\Reflection\DocBlock\Tag;
16-
use phpDocumentor\Reflection\DocBlock\Context;
17-
use phpDocumentor\Reflection\DocBlock\Location;
15+
use Barryvdh\Reflection\DocBlock\Tag;
16+
use Barryvdh\Reflection\DocBlock\Context;
17+
use Barryvdh\Reflection\DocBlock\Location;
1818

1919
/**
2020
* Parses the DocBlock for any structure.

src/phpDocumentor/Reflection/DocBlock/Context.php renamed to src/Barryvdh/Reflection/DocBlock/Context.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* @link http://phpdoc.org
1111
*/
1212

13-
namespace phpDocumentor\Reflection\DocBlock;
13+
namespace Barryvdh\Reflection\DocBlock;
1414

1515
/**
1616
* The context in which a DocBlock occurs.

src/phpDocumentor/Reflection/DocBlock/Description.php renamed to src/Barryvdh/Reflection/DocBlock/Description.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
* @link http://phpdoc.org
1111
*/
1212

13-
namespace phpDocumentor\Reflection\DocBlock;
13+
namespace Barryvdh\Reflection\DocBlock;
1414

15-
use phpDocumentor\Reflection\DocBlock;
15+
use Barryvdh\Reflection\DocBlock;
1616

1717
/**
1818
* Parses a Description of a DocBlock or tag.

src/phpDocumentor/Reflection/DocBlock/Location.php renamed to src/Barryvdh/Reflection/DocBlock/Location.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* @link http://phpdoc.org
1111
*/
1212

13-
namespace phpDocumentor\Reflection\DocBlock;
13+
namespace Barryvdh\Reflection\DocBlock;
1414

1515
/**
1616
* The location a DocBlock occurs within a file.

src/phpDocumentor/Reflection/DocBlock/Serializer.php renamed to src/Barryvdh/Reflection/DocBlock/Serializer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
* @link http://phpdoc.org
1111
*/
1212

13-
namespace phpDocumentor\Reflection\DocBlock;
13+
namespace Barryvdh\Reflection\DocBlock;
1414

15-
use phpDocumentor\Reflection\DocBlock;
15+
use Barryvdh\Reflection\DocBlock;
1616

1717
/**
1818
* Serializes a DocBlock instance.

src/phpDocumentor/Reflection/DocBlock/Tag.php renamed to src/Barryvdh/Reflection/DocBlock/Tag.php

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
* @link http://phpdoc.org
1111
*/
1212

13-
namespace phpDocumentor\Reflection\DocBlock;
13+
namespace Barryvdh\Reflection\DocBlock;
1414

15-
use phpDocumentor\Reflection\DocBlock;
15+
use Barryvdh\Reflection\DocBlock;
1616

1717
/**
1818
* Parses a tag definition for a DocBlock.
@@ -59,43 +59,43 @@ class Tag implements \Reflector
5959
*/
6060
private static $tagHandlerMappings = array(
6161
'author'
62-
=> '\phpDocumentor\Reflection\DocBlock\Tag\AuthorTag',
62+
=> '\Barryvdh\Reflection\DocBlock\Tag\AuthorTag',
6363
'covers'
64-
=> '\phpDocumentor\Reflection\DocBlock\Tag\CoversTag',
64+
=> '\Barryvdh\Reflection\DocBlock\Tag\CoversTag',
6565
'deprecated'
66-
=> '\phpDocumentor\Reflection\DocBlock\Tag\DeprecatedTag',
66+
=> '\Barryvdh\Reflection\DocBlock\Tag\DeprecatedTag',
6767
'example'
68-
=> '\phpDocumentor\Reflection\DocBlock\Tag\ExampleTag',
68+
=> '\Barryvdh\Reflection\DocBlock\Tag\ExampleTag',
6969
'link'
70-
=> '\phpDocumentor\Reflection\DocBlock\Tag\LinkTag',
70+
=> '\Barryvdh\Reflection\DocBlock\Tag\LinkTag',
7171
'method'
72-
=> '\phpDocumentor\Reflection\DocBlock\Tag\MethodTag',
72+
=> '\Barryvdh\Reflection\DocBlock\Tag\MethodTag',
7373
'param'
74-
=> '\phpDocumentor\Reflection\DocBlock\Tag\ParamTag',
74+
=> '\Barryvdh\Reflection\DocBlock\Tag\ParamTag',
7575
'property-read'
76-
=> '\phpDocumentor\Reflection\DocBlock\Tag\PropertyReadTag',
76+
=> '\Barryvdh\Reflection\DocBlock\Tag\PropertyReadTag',
7777
'property'
78-
=> '\phpDocumentor\Reflection\DocBlock\Tag\PropertyTag',
78+
=> '\Barryvdh\Reflection\DocBlock\Tag\PropertyTag',
7979
'property-write'
80-
=> '\phpDocumentor\Reflection\DocBlock\Tag\PropertyWriteTag',
80+
=> '\Barryvdh\Reflection\DocBlock\Tag\PropertyWriteTag',
8181
'return'
82-
=> '\phpDocumentor\Reflection\DocBlock\Tag\ReturnTag',
82+
=> '\Barryvdh\Reflection\DocBlock\Tag\ReturnTag',
8383
'see'
84-
=> '\phpDocumentor\Reflection\DocBlock\Tag\SeeTag',
84+
=> '\Barryvdh\Reflection\DocBlock\Tag\SeeTag',
8585
'since'
86-
=> '\phpDocumentor\Reflection\DocBlock\Tag\SinceTag',
86+
=> '\Barryvdh\Reflection\DocBlock\Tag\SinceTag',
8787
'source'
88-
=> '\phpDocumentor\Reflection\DocBlock\Tag\SourceTag',
88+
=> '\Barryvdh\Reflection\DocBlock\Tag\SourceTag',
8989
'throw'
90-
=> '\phpDocumentor\Reflection\DocBlock\Tag\ThrowsTag',
90+
=> '\Barryvdh\Reflection\DocBlock\Tag\ThrowsTag',
9191
'throws'
92-
=> '\phpDocumentor\Reflection\DocBlock\Tag\ThrowsTag',
92+
=> '\Barryvdh\Reflection\DocBlock\Tag\ThrowsTag',
9393
'uses'
94-
=> '\phpDocumentor\Reflection\DocBlock\Tag\UsesTag',
94+
=> '\Barryvdh\Reflection\DocBlock\Tag\UsesTag',
9595
'var'
96-
=> '\phpDocumentor\Reflection\DocBlock\Tag\VarTag',
96+
=> '\Barryvdh\Reflection\DocBlock\Tag\VarTag',
9797
'version'
98-
=> '\phpDocumentor\Reflection\DocBlock\Tag\VersionTag'
98+
=> '\Barryvdh\Reflection\DocBlock\Tag\VersionTag'
9999
);
100100

101101
/**

src/phpDocumentor/Reflection/DocBlock/Tag/AuthorTag.php renamed to src/Barryvdh/Reflection/DocBlock/Tag/AuthorTag.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
* @link http://phpdoc.org
1111
*/
1212

13-
namespace phpDocumentor\Reflection\DocBlock\Tag;
13+
namespace Barryvdh\Reflection\DocBlock\Tag;
1414

15-
use phpDocumentor\Reflection\DocBlock\Tag;
15+
use Barryvdh\Reflection\DocBlock\Tag;
1616

1717
/**
1818
* Reflection class for an @author tag in a Docblock.

src/phpDocumentor/Reflection/DocBlock/Tag/CoversTag.php renamed to src/Barryvdh/Reflection/DocBlock/Tag/CoversTag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* @link http://phpdoc.org
1111
*/
1212

13-
namespace phpDocumentor\Reflection\DocBlock\Tag;
13+
namespace Barryvdh\Reflection\DocBlock\Tag;
1414

1515
/**
1616
* Reflection class for a @covers tag in a Docblock.

src/phpDocumentor/Reflection/DocBlock/Tag/DeprecatedTag.php renamed to src/Barryvdh/Reflection/DocBlock/Tag/DeprecatedTag.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
* @link http://phpdoc.org
1111
*/
1212

13-
namespace phpDocumentor\Reflection\DocBlock\Tag;
13+
namespace Barryvdh\Reflection\DocBlock\Tag;
1414

15-
use phpDocumentor\Reflection\DocBlock\Tag\VersionTag;
15+
use Barryvdh\Reflection\DocBlock\Tag\VersionTag;
1616

1717
/**
1818
* Reflection class for a @deprecated tag in a Docblock.

0 commit comments

Comments
 (0)