Skip to content

Commit 864c4ab

Browse files
committed
Switch NS
1 parent 8da5762 commit 864c4ab

25 files changed

+31
-59
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
]
2727
},
2828
"autoload-dev": {
29-
"psr-4": { "SebastianBergmann\\Diff\\Tests\\": "tests/" }
29+
"psr-4": { "PhpCsFixer\\Diff\\Tests\\": "tests/" }
3030
}
3131
}

src/Chunk.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* file that was distributed with this source code.
99
*/
1010

11-
namespace SebastianBergmann\Diff;
11+
namespace PhpCsFixer\Diff;
1212

1313
final class Chunk
1414
{

src/Diff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* file that was distributed with this source code.
99
*/
1010

11-
namespace SebastianBergmann\Diff;
11+
namespace PhpCsFixer\Diff;
1212

1313
final class Diff
1414
{

src/Differ.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
* file that was distributed with this source code.
99
*/
1010

11-
namespace SebastianBergmann\Diff;
11+
namespace PhpCsFixer\Diff;
1212

13-
use SebastianBergmann\Diff\Output\DiffOutputBuilderInterface;
14-
use SebastianBergmann\Diff\Output\UnifiedDiffOutputBuilder;
13+
use PhpCsFixer\Diff\Output\DiffOutputBuilderInterface;
14+
use PhpCsFixer\Diff\Output\UnifiedDiffOutputBuilder;
1515

1616
/**
1717
* Diff implementation.

src/Exception/Exception.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* file that was distributed with this source code.
99
*/
1010

11-
namespace SebastianBergmann\Diff;
11+
namespace PhpCsFixer\Diff;
1212

1313
interface Exception
1414
{

src/Exception/InvalidArgumentException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* file that was distributed with this source code.
99
*/
1010

11-
namespace SebastianBergmann\Diff;
11+
namespace PhpCsFixer\Diff;
1212

1313
class InvalidArgumentException extends \InvalidArgumentException implements Exception
1414
{

src/Line.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* file that was distributed with this source code.
99
*/
1010

11-
namespace SebastianBergmann\Diff;
11+
namespace PhpCsFixer\Diff;
1212

1313
final class Line
1414
{

src/LongestCommonSubsequenceCalculator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* file that was distributed with this source code.
99
*/
1010

11-
namespace SebastianBergmann\Diff;
11+
namespace PhpCsFixer\Diff;
1212

1313
interface LongestCommonSubsequenceCalculator
1414
{

src/MemoryEfficientLongestCommonSubsequenceCalculator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* file that was distributed with this source code.
99
*/
1010

11-
namespace SebastianBergmann\Diff;
11+
namespace PhpCsFixer\Diff;
1212

1313
final class MemoryEfficientLongestCommonSubsequenceCalculator implements LongestCommonSubsequenceCalculator
1414
{

src/Output/AbstractChunkOutputBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* file that was distributed with this source code.
99
*/
1010

11-
namespace SebastianBergmann\Diff\Output;
11+
namespace PhpCsFixer\Diff\Output;
1212

1313
abstract class AbstractChunkOutputBuilder implements DiffOutputBuilderInterface
1414
{

0 commit comments

Comments
 (0)