Skip to content

Commit b605b55

Browse files
Create EnumConflict
1 parent ea35b65 commit b605b55

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

tests/EnumConflict

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?php
2+
/**
3+
* @link http://github.com/myclabs/php-enum
4+
* @license http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file)
5+
*/
6+
namespace MyCLabs\Tests\Enum;
7+
8+
use MyCLabs\Enum\Enum;
9+
10+
/**
11+
* Class EnumConflict
12+
*
13+
* @method static EnumFixture FOO()
14+
* @method static EnumFixture BAR()
15+
*
16+
* @author Daniel Costa <[email protected]>
17+
* @author Mirosław Filip <[email protected]>
18+
*/
19+
class EnumConflict extends Enum
20+
{
21+
const FOO = "foo";
22+
const BAR = "bar";
23+
}

0 commit comments

Comments
 (0)