Skip to content

Commit

Permalink
Add enum stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
rawilk committed Apr 9, 2024
1 parent 106ef42 commit 9630a9b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions stubs/enum.backed.stub
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?php

declare(strict_types=1);

namespace {{ namespace }};

enum {{ class }}: {{ type }}
{
}
9 changes: 9 additions & 0 deletions stubs/enum.stub
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?php

declare(strict_types=1);

namespace {{ namespace }};

enum {{ class }}
{
}

0 comments on commit 9630a9b

Please sign in to comment.