Skip to content

Commit 04a0528

Browse files
committed
added @method annotations for test assets
1 parent a55568a commit 04a0528

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

tests/MabeEnumTest/TestAsset/EnumBasic.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,23 @@
1010
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
1111
* @copyright Copyright (c) 2013 Marc Bennewitz
1212
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
13+
*
14+
* @method EnumBasic ONE()
15+
* @method EnumBasic TWO()
16+
* @method EnumBasic THREE()
17+
* @method EnumBasic FOUR()
18+
* @method EnumBasic FIVE()
19+
* @method EnumBasic SIX()
20+
* @method EnumBasic SEVEN()
21+
* @method EnumBasic EIGHT()
22+
* @method EnumBasic NINE()
23+
* @method EnumBasic ZERO()
24+
* @method EnumBasic FLOAT()
25+
* @method EnumBasic STR()
26+
* @method EnumBasic STR_EMPTY()
27+
* @method EnumBasic NIL()
28+
* @method EnumBasic BOOLEAN_TRUE()
29+
* @method EnumBasic BOOLEAN_FALSE()
1330
*/
1431
class EnumBasic extends Enum
1532
{

tests/MabeEnumTest/TestAsset/EnumBasic2.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,23 @@
1010
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
1111
* @copyright Copyright (c) 2013 Marc Bennewitz
1212
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
13+
*
14+
* @method EnumBasic ONE()
15+
* @method EnumBasic TWO()
16+
* @method EnumBasic THREE()
17+
* @method EnumBasic FOUR()
18+
* @method EnumBasic FIVE()
19+
* @method EnumBasic SIX()
20+
* @method EnumBasic SEVEN()
21+
* @method EnumBasic EIGHT()
22+
* @method EnumBasic NINE()
23+
* @method EnumBasic ZERO()
24+
* @method EnumBasic FLOAT()
25+
* @method EnumBasic STR()
26+
* @method EnumBasic STR_EMPTY()
27+
* @method EnumBasic NIL()
28+
* @method EnumBasic BOOLEAN_TRUE()
29+
* @method EnumBasic BOOLEAN_FALSE()
1330
*/
1431
class EnumBasic2 extends Enum
1532
{

tests/MabeEnumTest/TestAsset/EnumInheritance.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
99
* @copyright Copyright (c) 2013 Marc Bennewitz
1010
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
11+
*
12+
* @method EnumInheritance INHERITANCE()
1113
*/
1214
class EnumInheritance extends EnumBasic
1315
{

0 commit comments

Comments
 (0)