commandData = $commandData; $this->path = $commandData->config->pathSeeder; $this->fileName = Str::studly($this->commandData->config->mPlural).'TableSeeder.php'; } public function generate() { $templateData = $this->generatorHelpers->get_template('Seeds.model_seeder'); $templateData = $this->generatorHelpers->fill_template($this->commandData->dynamicVars, $templateData); FileUtil::createFile($this->path, $this->fileName, $templateData); $this->commandData->commandComment("\nSeeder created: "); $this->commandData->commandInfo($this->fileName); } public function updateMainSeeder() { $mainSeederContent = file_get_contents($this->commandData->config->pathDatabaseSeeder); $newSeederStatement = '$this->call('.$this->commandData->config->mPlural.'TableSeeder::class);'; if (strpos($mainSeederContent, $newSeederStatement) != false) { $this->commandData->commandObj->info($this->commandData->config->mPlural.'TableSeeder entry found in DatabaseSeeder. Skipping Adjustment.'); return; } $newSeederStatement = $this->generatorHelpers->generator_tabs(2).$newSeederStatement.$this->generatorHelpers->generator_nl(); preg_match_all('/\\$this->call\\((.*);/', $mainSeederContent, $matches); $totalMatches = count($matches[0]); $lastSeederStatement = $matches[0][$totalMatches - 1]; $replacePosition = strpos($mainSeederContent, $lastSeederStatement); $mainSeederContent = substr_replace($mainSeederContent, $newSeederStatement, $replacePosition + strlen($lastSeederStatement) + 1, 0); file_put_contents($this->commandData->config->pathDatabaseSeeder, $mainSeederContent); $this->commandData->commandComment('Main Seeder file updated.'); } public function rollback() { if ($this->rollbackFile($this->path, $this->fileName)) { $this->commandData->commandComment('Seeder file deleted: '.$this->fileName); } $mainSeederContent = file_get_contents($this->commandData->config->pathDatabaseSeeder); $mainSeederContent = str_replace('$this->call('.$this->commandData->config->mPlural.'TableSeeder::class);', '', $mainSeederContent); file_put_contents($this->commandData->config->pathDatabaseSeeder, $mainSeederContent); $this->commandData->commandComment('Main Seeder file updated.'); } }