File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -59,15 +59,15 @@ Given the following enum:
59
59
60
60
namespace App\Enums;
61
61
62
- use BenSampo\Enum\Enum ;
62
+ use Sourceboat\Enumeration\Enumeration ;
63
63
64
64
/**
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()
69
69
*/
70
- final class UserType extends Enum
70
+ final class UserType extends Enumeration
71
71
{
72
72
const Administrator = 0;
73
73
const Moderator = 1;
You can’t perform that action at this time.
0 commit comments