Skip to content

Commit 3dcbd98

Browse files
committed
Update namespace
1 parent d411a2b commit 3dcbd98

19 files changed

+360
-323
lines changed

composer.lock

Lines changed: 258 additions & 221 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/Barryvdh/Reflection/DocBlock/DescriptionTest.php

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

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

1515
/**
16-
* Test class for \phpDocumentor\Reflection\DocBlock\Description
16+
* Test class for \Barryvdh\Reflection\DocBlock\Description
1717
*
1818
* @author Vasil Rangelov <boen.robot@gmail.com>
1919
* @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)

tests/Barryvdh/Reflection/DocBlock/Tag/CoversTagTest.php

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

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

1515
/**
16-
* Test class for \phpDocumentor\Reflection\DocBlock\Tag\CoversTag
16+
* Test class for \Barryvdh\Reflection\DocBlock\Tag\CoversTag
1717
*
1818
* @author Daniel O'Connor <daniel.oconnor@gmail.com>
1919
* @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
@@ -23,15 +23,15 @@
2323
class CoversTagTest extends \PHPUnit_Framework_TestCase
2424
{
2525
/**
26-
* Test that the \phpDocumentor\Reflection\DocBlock\Tag\CoversTag can create
26+
* Test that the \Barryvdh\Reflection\DocBlock\Tag\CoversTag can create
2727
* a link for the covers doc block.
2828
*
2929
* @param string $type
3030
* @param string $content
3131
* @param string $exContent
3232
* @param string $exReference
3333
*
34-
* @covers \phpDocumentor\Reflection\DocBlock\Tag\CoversTag
34+
* @covers \Barryvdh\Reflection\DocBlock\Tag\CoversTag
3535
* @dataProvider provideDataForConstuctor
3636
*
3737
* @return void

tests/Barryvdh/Reflection/DocBlock/Tag/DeprecatedTagTest.php

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

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

1515
/**
16-
* Test class for \phpDocumentor\Reflection\DocBlock\Tag\DeprecatedTag
16+
* Test class for \Barryvdh\Reflection\DocBlock\Tag\DeprecatedTag
1717
*
1818
* @author Vasil Rangelov <boen.robot@gmail.com>
1919
* @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
@@ -23,7 +23,7 @@
2323
class DeprecatedTagTest extends \PHPUnit_Framework_TestCase
2424
{
2525
/**
26-
* Test that the \phpDocumentor\Reflection\DocBlock\Tag\LinkTag can create
26+
* Test that the \Barryvdh\Reflection\DocBlock\Tag\LinkTag can create
2727
* a link for the @deprecated doc block.
2828
*
2929
* @param string $type
@@ -32,7 +32,7 @@ class DeprecatedTagTest extends \PHPUnit_Framework_TestCase
3232
* @param string $exDescription
3333
* @param string $exVersion
3434
*
35-
* @covers \phpDocumentor\Reflection\DocBlock\Tag\DeprecatedTag
35+
* @covers \Barryvdh\Reflection\DocBlock\Tag\DeprecatedTag
3636
* @dataProvider provideDataForConstuctor
3737
*
3838
* @return void

tests/Barryvdh/Reflection/DocBlock/Tag/ExampleTagTest.php

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

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

1515
/**
16-
* Test class for \phpDocumentor\Reflection\DocBlock\Tag\ExampleTag
16+
* Test class for \Barryvdh\Reflection\DocBlock\Tag\ExampleTag
1717
*
1818
* @author Vasil Rangelov <boen.robot@gmail.com>
1919
* @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
@@ -23,7 +23,7 @@
2323
class ExampleTagTest extends \PHPUnit_Framework_TestCase
2424
{
2525
/**
26-
* Test that the \phpDocumentor\Reflection\DocBlock\Tag\SourceTag can
26+
* Test that the \Barryvdh\Reflection\DocBlock\Tag\SourceTag can
2727
* understand the @source DocBlock.
2828
*
2929
* @param string $type
@@ -33,7 +33,7 @@ class ExampleTagTest extends \PHPUnit_Framework_TestCase
3333
* @param string $exLineCount
3434
* @param string $exFilepath
3535
*
36-
* @covers \phpDocumentor\Reflection\DocBlock\Tag\ExampleTag
36+
* @covers \Barryvdh\Reflection\DocBlock\Tag\ExampleTag
3737
* @dataProvider provideDataForConstuctor
3838
*
3939
* @return void

tests/Barryvdh/Reflection/DocBlock/Tag/LinkTagTest.php

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

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

1515
/**
16-
* Test class for \phpDocumentor\Reflection\DocBlock\Tag\LinkTag
16+
* Test class for \Barryvdh\Reflection\DocBlock\Tag\LinkTag
1717
*
1818
* @author Ben Selby <benmatselby@gmail.com>
1919
* @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
@@ -23,7 +23,7 @@
2323
class LinkTagTest extends \PHPUnit_Framework_TestCase
2424
{
2525
/**
26-
* Test that the \phpDocumentor\Reflection\DocBlock\Tag\LinkTag can create
26+
* Test that the \Barryvdh\Reflection\DocBlock\Tag\LinkTag can create
2727
* a link for the @link doc block.
2828
*
2929
* @param string $type
@@ -32,7 +32,7 @@ class LinkTagTest extends \PHPUnit_Framework_TestCase
3232
* @param string $exDescription
3333
* @param string $exLink
3434
*
35-
* @covers \phpDocumentor\Reflection\DocBlock\Tag\LinkTag
35+
* @covers \Barryvdh\Reflection\DocBlock\Tag\LinkTag
3636
* @dataProvider provideDataForConstuctor
3737
*
3838
* @return void

tests/Barryvdh/Reflection/DocBlock/Tag/MethodTagTest.php

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

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

1515
/**
16-
* Test class for \phpDocumentor\Reflection\DocBlock\Tag\MethodTag
16+
* Test class for \Barryvdh\Reflection\DocBlock\Tag\MethodTag
1717
*
1818
* @author Mike van Riel <mike.vanriel@naenius.com>
1919
* @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
@@ -34,7 +34,7 @@ class MethodTagTest extends \PHPUnit_Framework_TestCase
3434
* @param string $description The short description mentioned in the
3535
* signature.
3636
*
37-
* @covers \phpDocumentor\Reflection\DocBlock\Tag\MethodTag
37+
* @covers \Barryvdh\Reflection\DocBlock\Tag\MethodTag
3838
* @dataProvider getTestSignatures
3939
*
4040
* @return void

tests/Barryvdh/Reflection/DocBlock/Tag/ParamTagTest.php

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

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

1515
/**
16-
* Test class for \phpDocumentor\Reflection\DocBlock\ParamTag
16+
* Test class for \Barryvdh\Reflection\DocBlock\ParamTag
1717
*
1818
* @author Mike van Riel <mike.vanriel@naenius.com>
1919
* @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
@@ -23,7 +23,7 @@
2323
class ParamTagTest extends \PHPUnit_Framework_TestCase
2424
{
2525
/**
26-
* Test that the \phpDocumentor\Reflection\DocBlock\Tag\ParamTag can
26+
* Test that the \Barryvdh\Reflection\DocBlock\Tag\ParamTag can
2727
* understand the @param DocBlock.
2828
*
2929
* @param string $type
@@ -33,7 +33,7 @@ class ParamTagTest extends \PHPUnit_Framework_TestCase
3333
* @param string $extractedVarName
3434
* @param string $extractedDescription
3535
*
36-
* @covers \phpDocumentor\Reflection\DocBlock\Tag\ParamTag
36+
* @covers \Barryvdh\Reflection\DocBlock\Tag\ParamTag
3737
* @dataProvider provideDataForConstructor
3838
*
3939
* @return void

tests/Barryvdh/Reflection/DocBlock/Tag/ReturnTagTest.php

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

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

1515
/**
16-
* Test class for \phpDocumentor\Reflection\DocBlock\ReturnTag
16+
* Test class for \Barryvdh\Reflection\DocBlock\ReturnTag
1717
*
1818
* @author Mike van Riel <mike.vanriel@naenius.com>
1919
* @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
@@ -23,7 +23,7 @@
2323
class ReturnTagTest extends \PHPUnit_Framework_TestCase
2424
{
2525
/**
26-
* Test that the \phpDocumentor\Reflection\DocBlock\Tag\ReturnTag can
26+
* Test that the \Barryvdh\Reflection\DocBlock\Tag\ReturnTag can
2727
* understand the @return DocBlock.
2828
*
2929
* @param string $type
@@ -32,7 +32,7 @@ class ReturnTagTest extends \PHPUnit_Framework_TestCase
3232
* @param string $extractedTypes
3333
* @param string $extractedDescription
3434
*
35-
* @covers \phpDocumentor\Reflection\DocBlock\Tag\ReturnTag
35+
* @covers \Barryvdh\Reflection\DocBlock\Tag\ReturnTag
3636
* @dataProvider provideDataForConstructor
3737
*
3838
* @return void

tests/Barryvdh/Reflection/DocBlock/Tag/SeeTagTest.php

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

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

1515
/**
16-
* Test class for \phpDocumentor\Reflection\DocBlock\Tag\SeeTag
16+
* Test class for \Barryvdh\Reflection\DocBlock\Tag\SeeTag
1717
*
1818
* @author Daniel O'Connor <daniel.oconnor@gmail.com>
1919
* @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
@@ -31,7 +31,7 @@ class SeeTagTest extends \PHPUnit_Framework_TestCase
3131
* @param string $exContent
3232
* @param string $exReference
3333
*
34-
* @covers \phpDocumentor\Reflection\DocBlock\Tag\SeeTag
34+
* @covers \Barryvdh\Reflection\DocBlock\Tag\SeeTag
3535
* @dataProvider provideDataForConstuctor
3636
*
3737
* @return void

0 commit comments

Comments
 (0)