We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea35b65 commit b605b55Copy full SHA for b605b55
tests/EnumConflict
@@ -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 <danielcosta@gmail.com>
17
+ * @author Mirosław Filip <mirfilip@gmail.com>
18
19
+class EnumConflict extends Enum
20
+{
21
+ const FOO = "foo";
22
+ const BAR = "bar";
23
+}
0 commit comments