Skip to content
This repository was archived by the owner on Dec 26, 2023. It is now read-only.

Commit c0719ce

Browse files
author
Petr Knap
committed
AbstractEnum renamed to Enum
1 parent 880ada1 commit c0719ce

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Enum/AbstractEnum.php renamed to src/Enum/Enum.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* @package PetrKnap\Php\Enum
1313
* @license https://github.com/petrknap/php-enum/blob/master/LICENSE MIT
1414
*/
15-
abstract class AbstractEnum implements EnumInterface
15+
abstract class Enum implements EnumInterface
1616
{
1717
/**
1818
* @var self[][]

tests/Enum/EnumTest/MyBoolean.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
namespace PetrKnap\Php\Enum\Test\EnumTest;
44

5-
use PetrKnap\Php\Enum\AbstractEnum;
5+
use PetrKnap\Php\Enum\Enum;
66

77
/**
88
* @method static MyBoolean MY_TRUE()
99
* @method static MyBoolean MY_FALSE()
1010
*/
11-
class MyBoolean extends AbstractEnum
11+
class MyBoolean extends Enum
1212
{
1313
protected function members()
1414
{

0 commit comments

Comments
 (0)