溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

laravel如何通過(guò)創(chuàng)建自定義artisan make命令來(lái)新建類文件

發(fā)布時(shí)間:2021-07-01 10:21:00 來(lái)源:億速云 閱讀:144 作者:小新 欄目:開(kāi)發(fā)技術(shù)

小編給大家分享一下laravel如何通過(guò)創(chuàng)建自定義artisan make命令來(lái)新建類文件,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

我們?cè)趌aravel開(kāi)發(fā)時(shí)經(jīng)常用到artisan make:controller等命令來(lái)新建Controller、Model、Job、Event等類文件。 在Laravel5.2中artisan make命令支持創(chuàng)建如下文件:

 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

不過(guò),有時(shí)候默認(rèn)的并不能夠滿足我們的需求, 比方我們?cè)陧?xiàng)目中使用的Respository模式來(lái)進(jìn)一步封裝了Model文件,就需要經(jīng)常創(chuàng)建Repository類文件了,時(shí)間長(zhǎng)了就會(huì)想能不能通過(guò)artisan make:repository命令自動(dòng)創(chuàng)建類文件而不是都每次手動(dòng)創(chuàng)建。

系統(tǒng)自帶的artisan make命令對(duì)應(yīng)的PHP程序放在Illuminate\Foundation\Console目錄下,我們參照Illuminate\Foundation\Console\ProviderMakeCommand類來(lái)定義自己的artisan make:repository命令。

一、創(chuàng)建命令類

在app\Console\Commands文件夾下創(chuàng)建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';
 }
}

二、創(chuàng)建命令類對(duì)應(yīng)的模版文件

在app\Console\Commands\stubs下創(chuàng)建模版文件 .stub文件是make命令生成的類文件的模版,用來(lái)定義要生成的類文件的通用部分創(chuàng)建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!
  }
 }

三、注冊(cè)命令類

將RepositoryMakeCommand添加到App\Console\Kernel.php中

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

測(cè)試命令

好了, 現(xiàn)在就可以通過(guò)make:repository命令來(lái)創(chuàng)建repository類文件了

php artisan make:repository TestRepository

php artisan make:repository SubDirectory/TestRepository

以上是“l(fā)aravel如何通過(guò)創(chuàng)建自定義artisan make命令來(lái)新建類文件”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI