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

+5
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

+3-1
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

+1-3
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 <[email protected]>
1311
* @author Daniel Costa <[email protected]
1412
*/

0 commit comments

Comments
 (0)