芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/sommatv/vendor/illuminate/database/Console/Seeds/SeederMakeCommand.php
composer = $composer; } /** * Execute the console command. * * @return void */ public function fire() { parent::fire(); $this->composer->dumpAutoloads(); } /** * Get the stub file for the generator. * * @return string */ protected function getStub() { return __DIR__.'/stubs/seeder.stub'; } /** * Get the destination class path. * * @param string $name * @return string */ protected function getPath($name) { return $this->laravel->databasePath().'/seeds/'.$name.'.php'; } /** * Parse the name and format according to the root namespace. * * @param string $name * @return string */ protected function parseName($name) { return $name; } }