Skip to content

Commit 661f71c

Browse files
committed
Change namespace
1 parent 9acb3b8 commit 661f71c

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
},
1919
"autoload": {
2020
"psr-4": {
21-
"PHPModelGeneratorProduction\\": "src"
21+
"PHPModelGenerator\\": "src"
2222
}
2323
},
2424
"autoload-dev": {
2525
"psr-4": {
26-
"PHPModelGeneratorProduction\\Tests\\": "tests"
26+
"PHPModelGenerator\\Tests\\": "tests"
2727
}
2828
}
2929
}

src/Exception/ErrorRegistryException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types = 1);
44

5-
namespace PHPModelGeneratorProduction\Exception;
5+
namespace PHPModelGenerator\Exception;
66

77
use Exception;
88

src/Exception/ErrorRegistryExceptionInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types = 1);
44

5-
namespace PHPModelGeneratorProduction\Exception;
5+
namespace PHPModelGenerator\Exception;
66

77
use Throwable;
88

src/Exception/ValidationException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types = 1);
44

5-
namespace PHPModelGeneratorProduction\Exception;
5+
namespace PHPModelGenerator\Exception;
66

77
use Exception;
88

src/Interface/SerializationInterface.php renamed to src/Interfaces/SerializationInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace PHPModelGeneratorProduction\Interfaces;
3+
namespace PHPModelGenerator\Interfaces;
44

55
interface SerializationInterface
66
{

tests/Exception/ErrorRegistryExceptionTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace PHPModelGeneratorProduction\Tests;
3+
namespace PHPModelGenerator\Tests;
44

5-
use PHPModelGeneratorProduction\Exception\ErrorRegistryException;
5+
use PHPModelGenerator\Exception\ErrorRegistryException;
66
use PHPUnit\Framework\TestCase;
77

88
/**

tests/Exception/ValidationExceptionTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace PHPModelGeneratorProduction\Tests;
3+
namespace PHPModelGenerator\Tests;
44

5-
use PHPModelGeneratorProduction\Exception\ValidationException;
5+
use PHPModelGenerator\Exception\ValidationException;
66
use PHPUnit\Framework\TestCase;
77

88
/**

0 commit comments

Comments
 (0)