wawan/laravel-make-class
Composer 安装命令:
composer require wawan/laravel-make-class
包简介
Artisan command for generating a new custom class in Laravel.
README 文档
README
Artisan command for generating a new custom class in Laravel.
Installation
Install the package via composer:
composer require wawan/laravel-make-class:dev-master
If you're using Laravel < 5.5, you'll need to add the service provider to config/app.php file:
'providers' => [ ... Wawan\MakeClass\MakeClassServiceProvider::class, ... ]
Usage
To create a new class, call the make:class command from Artisan. Class will be created under the app folder.
php artisan make:class ClassName
You can add the -c or --constructor option to generate new class with constructor.
php artisan make:class ClassName -c
php artisan make:class ClassName --constructor
To create a new interface, call the `make:interface` command from Artisan. Interface will be created under the `app` folder.
php artisan make:interface InterfaceName
统计信息
- 总下载量: 11
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-07-08