我想制作一個包,它使用自定義存根來創(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';
- 1 回答
- 0 關注
- 160 瀏覽
添加回答
舉報
0/150
提交
取消