feat(laravel): add aliases for new artisan commands

adds aliases for the new artisan commands introduced in laravel 11:
- `pamcl` for `php artisan make:class`
- `pamen` for `php artisan make:enum`
- `pami` for `php artisan make:interface`
- `pamtr` for `php artisan make:trait`
This commit is contained in:
rizkyilhampra 2024-04-15 23:49:50 +08:00
commit 39efc40355
2 changed files with 8 additions and 0 deletions

View file

@ -36,6 +36,10 @@ plugins=(... laravel)
| `pamj` | `php artisan make:job` |
| `paml` | `php artisan make:listener` |
| `pamn` | `php artisan make:notification` |
| `pamcl` | `php artisan make:class` |
| `pamen` | `php artisan make:enum` |
| `pami` | `php artisan make:interface` |
| `pamtr` | `php artisan make:trait` |
## Clears

View file

@ -25,6 +25,10 @@ alias pamj='php artisan make:job'
alias paml='php artisan make:listener'
alias pamn='php artisan make:notification'
alias pampp='php artisan make:provider'
alias pamcl='php artisan make:class'
alias pamen='php artisan make:enum'
alias pami='php artisan make:interface'
alias pamtr='php artisan make:trait'
# Clears