Skip to content

Commit 5c6d53e

Browse files
committed
Fixed namespaces after merge
1 parent a1c2d85 commit 5c6d53e

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

composer.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@
1616
"MyCLabs\\Enum\\": "src/"
1717
}
1818
},
19+
"autoload-dev": {
20+
"psr-4": {
21+
"MyCLabs\\Tests\\Enum\\": "tests/"
22+
}
23+
},
1924
"require": {
2025
"php": ">=5.3"
2126
},

tests/EnumFixture.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
* @license http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file)
55
*/
66

7-
namespace MyCLabs\Enum;
7+
namespace MyCLabs\Tests\Enum;
8+
9+
use MyCLabs\Enum\Enum;
810

911
/**
1012
* Class EnumFixture

tests/EnumTest.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@
44
* @license http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file)
55
*/
66

7-
namespace MyCLabs\Enum;
7+
namespace MyCLabs\Tests\Enum;
88

99
/**
10-
* Enum test
11-
*
1210
* @author Matthieu Napoli <matthieu@mnapoli.fr>
1311
* @author Daniel Costa <danielcosta@gmail.com
1412
*/

0 commit comments

Comments
 (0)