st-man-hori / laravel-make-service
为laravel创建服务类和服务接口
v1.0.0
2023-05-08 03:06 UTC
Requires
- illuminate/console: ^6.0|^7.0|^8.0|^9.0
- illuminate/support: ^6.0|^7.0|^8.0|^9.0
- mockery/mockery: ^1.4
Requires (Dev)
- phpunit/phpunit: ^9.5
This package is not auto-updated.
Last update: 2024-09-24 08:27:56 UTC
README
安装
$ composer require st-man-hori/laravel-make-service --dev
用法
php artisan make:service {name}
示例
$ php artisan make:service UserService
Services/Userservice.php <?php namespace App\Services; use App\Services\UserServiceInterface; class UserService implements UserServiceInterface { // }
Services/UserserviceInterface.php <?php namespace App\Services; interface UserServiceInterface { // }