第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Laravel 包自定義遷移命令

Laravel 包自定義遷移命令

PHP
楊__羊羊 2023-04-28 14:05:58
我想制作一個包,它使用自定義存根來創(chuàng)建我的包所需的遷移。更準確地說,運行命令應該為具有特定特征的模型制作數(shù)據(jù)透視表。如果我發(fā)出“正?!泵睿铱梢栽谖业姆仗峁┥讨凶运簆ublic function boot(){    if ($this->app->runningInConsole()) {        $this->commands([            MakeContainerMigration::class,        ]);    }}然而,在這種情況下,我想重用 Laravel 的編碼并省去重新發(fā)明輪子的麻煩。所以我的命令看起來像這樣:class MakeContainerMigration extends MigrateMakeCommand{    protected $name = 'custom:make-container';    protected $description = '...';}由于MigrateMakeCommand沒有定義存根,而是它的依賴項MigrationCreator,我需要找到一種方法來為其提供自定義存根路徑,而不會破壞“常規(guī)”遷移存根。我嘗試做這樣的事情但失敗了:public function register(){    $this->registerCreator();    $this->registerMigrateMakeCommand();    if ($this->app->runningInConsole()) {        $this->commands([            //MakeContainerMigration::class,            'custom.command.migrate.make'        ]);    }}protected function registerCreator(){    $this->app->singleton('custom.migration.creator', function ($app) {        return new MigrationCreator($app['files'], __DIR__ . '/stubs');    });}protected function registerMigrateMakeCommand(){    $this->app->singleton('custom.command.migrate.make', function ($app) {        $creator = $app['custom.migration.creator'];        $composer = $app['composer'];        return new MakeContainerMigration($creator, $composer);    });}我知道注冊命令不應該像這樣運行,因為我只是將單例注冊到 Laravelapp實例,但我不知道如何通過類注冊它,同時確保MigrationCreator注入正確的版本。我有點卡在這里,有辦法嗎?
查看完整描述

1 回答

?
長風秋雁

TA貢獻1757條經驗 獲得超7個贊

結果一切正常,我只需要更換

protected $name = 'custom:make-container';

protected $signature = 'custom:make-container';


查看完整回答
反對 回復 2023-04-28
  • 1 回答
  • 0 關注
  • 160 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號