st-man-hori/laravel-make-service

为laravel创建服务类和服务接口

v1.0.0 2023-05-08 03:06 UTC

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
{
    //
}