>  기사  >  백엔드 개발  >  laravel을 통해 새 클래스 파일을 생성하기 위해 사용자 정의 artisan make 명령을 생성하는 방법

laravel을 통해 새 클래스 파일을 생성하기 위해 사용자 정의 artisan make 명령을 생성하는 방법

不言
不言원래의
2018-06-13 14:53:211924검색

다음 글에서는 laravel이 custom artisan make 명령을 생성하여 새로운 클래스 파일을 생성하는 방법에 대한 관련 정보를 주로 소개합니다. 필요한 친구들이 참고할 수 있습니다.

Laravel은 비브라우저 비즈니스 로직을 처리하기 위해 Artisan을 통해 강력한 콘솔 명령을 제공합니다.

머리말

이 글은 주로 사용자 정의 artisan make 명령을 생성하여 새로운 클래스 파일을 생성하는 laravel에 대한 관련 내용을 소개합니다. 참고 및 학습을 위해 공유하겠습니다. 자세한 소개는 아래에서 함께 살펴보도록 하겠습니다.

laravel을 개발할 때 우리는 artisan make:controller와 같은 명령을 사용하여 Controller, Model, Job, Event와 같은 새로운 클래스 파일을 생성하는 경우가 많습니다. Laravel5.2에서 artisan make 명령은 다음 파일 생성을 지원합니다: artisan make:controller等命令来新建Controller、Model、Job、Event等类文件。 在Laravel5.2中artisan make命令支持创建如下文件:

 make:auth   Scaffold basic login and registration views and routes
 make:console  Create a new Artisan command
 make:controller  Create a new controller class
 make:event   Create a new event class
 make:job   Create a new job class
 make:listener  Create a new event listener class
 make:middleware  Create a new middleware class
 make:migration  Create a new migration file
 make:model   Create a new Eloquent model class
 make:policy   Create a new policy class
 make:provider  Create a new service provider class
 make:request  Create a new form request class
 make:seeder   Create a new seeder class
 make:test   Create a new test class

不过,有时候默认的并不能够满足我们的需求, 比方我们在项目中使用的Respository模式来进一步封装了Model文件,就需要经常创建Repository类文件了,时间长了就会想能不能通过artisan make:repository命令自动创建类文件而不是都每次手动创建。

系统自带的artisan make命令对应的PHP程序放在IlluminateFoundationConsole目录下,我们参照IlluminateFoundationConsoleProviderMakeCommand类来定义自己的artisan make:repository命令。

一、创建命令类

在appConsoleCommands文件夹下创建RepositoryMakeCommand.php文件,具体程序如下:

namespace App\Console\Commands;

use Illuminate\Console\GeneratorCommand;

class RepositoryMakeCommand extends GeneratorCommand
{
 /**
  * The console command name.
  *
  * @var string
  */
 protected $name = 'make:repository';

 /**
  * The console command description.
  *
  * @var string
  */
 protected $description = 'Create a new repository class';

 /**
  * The type of class being generated.
  *
  * @var string
  */
 protected $type = 'Repository';

 /**
  * Get the stub file for the generator.
  *
  * @return string
  */
 protected function getStub()
 {
  return __DIR__.'/stubs/repository.stub';
 }

 /**
  * Get the default namespace for the class.
  *
  * @param string $rootNamespace
  * @return string
  */
 protected function getDefaultNamespace($rootNamespace)
 {
  return $rootNamespace.'\Repositories';
 }
}

二、创建命令类对应的模版文件

在appConsoleCommandsstubs下创建模版文件 .stub文件是make命令生成的类文件的模版,用来定义要生成的类文件的通用部分创建repository.stub模版文件:

 namespace DummyNamespace;
 
 use App\Repositories\BaseRepository;
 
 class DummyClass extends BaseRepository
 {
  
  /**
   * Specify Model class name
   * 
   * @return string
   */
  public function model()
  {
   //set model name in here, this is necessary!
  }
 }

三、注册命令类

将RepositoryMakeCommand添加到AppConsoleKernel.php中

 protected $commands = [
  Commands\RepositoryMakeCommand::class
 ];

测试命令

好了, 现在就可以通过make:repository

php artisan make:repository TestRepository

php artisan make:repository SubDirectory/TestRepository

그러나 때때로 기본값은 우리가 사용하는 저장소 모드와 같이 우리의 요구를 충족하지 못할 수 있습니다. 프로젝트 모델 파일을 추가로 캡슐화하려면 Repository 클래스 파일을 자주 생성해야 합니다. 시간이 지나면 수동으로 생성하는 대신 artisan make:repository 명령을 통해 자동으로 클래스 파일을 생성할 수 있는지 궁금할 것입니다. 매번 말이죠.

시스템과 함께 제공되는 artisan make 명령에 해당하는 PHP 프로그램은 IlluminateFoundationConsole 디렉토리에 위치합니다. 우리는 자체 artisan make:repository를 정의하기 위해 IlluminateFoundationConsoleProviderMakeCommand 클래스를 참조합니다. > 명령.

1. 명령어 클래스를 생성합니다.

appConsoleCommands 폴더에 RepositoryMakeCommand.php 파일을 생성합니다. 구체적인 절차는 다음과 같습니다.

rrreee

🎜 2. 다음에 해당하는 템플릿 파일을 생성합니다. 명령 class 🎜 🎜🎜 🎜🎜appConsoleCommandsstubs 아래에 템플릿 파일을 만듭니다. 스텁 파일은 make 명령으로 생성된 클래스 파일의 템플릿입니다. 생성할 클래스 파일의 공통 부분을 정의하는 데 사용됩니다. .stub 템플릿 파일: 🎜🎜🎜rrreee🎜🎜🎜🎜🎜 3. 명령 클래스를 등록합니다🎜🎜🎜🎜🎜RepositoryMakeCommand를 AppConsoleKernel.php에 추가🎜🎜🎜rrreee🎜🎜🎜🎜명령 테스트 🎜🎜🎜🎜좋아, 이제 너는 make:repository 명령 리포지토리 클래스 파일을 통해 생성할 수 있습니다🎜🎜🎜rrreee🎜🎜🎜위 내용은 모두의 학습에 도움이 되기를 바랍니다. , PHP 중국어 웹사이트를 주목해주세요! 🎜🎜관련 권장사항: 🎜🎜🎜Laravel에서 리소스 라우팅 사용자 정의 URL을 다시 작성하는 구현 방법에 대해🎜🎜🎜🎜🎜laravel 5.4에서 무제한 분류를 구현하는 방법에 대해🎜🎜🎜🎜🎜🎜🎜

위 내용은 laravel을 통해 새 클래스 파일을 생성하기 위해 사용자 정의 artisan make 명령을 생성하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.