Skip to content

Commit 0f99692

Browse files
committed
fix readme
1 parent dc1b2b7 commit 0f99692

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,15 @@ Given the following enum:
5959

6060
namespace App\Enums;
6161

62-
use BenSampo\Enum\Enum;
62+
use Sourceboat\Enumeration\Enumeration;
6363

6464
/**
65-
* @method static Administrator() // These are only for autocompletion etc.
66-
* @method static Moderator()
67-
* @method static Subscriber()
68-
* @method static SuperAdministrator()
65+
* @method static \App\Enums\UserType Administrator() // These are only for autocompletion etc.
66+
* @method static \App\Enums\UserType Moderator()
67+
* @method static \App\Enums\UserType Subscriber()
68+
* @method static \App\Enums\UserType SuperAdministrator()
6969
*/
70-
final class UserType extends Enum
70+
final class UserType extends Enumeration
7171
{
7272
const Administrator = 0;
7373
const Moderator = 1;

0 commit comments

Comments
 (0)