JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "SeedMakeCommand.php"
Full Path: /var/www/laravel_filter/vendor/nwidart/laravel-modules/src/Commands/SeedMakeCommand.php
File size: 2.68 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Nwidart\Modules\Commands;
use Illuminate\Support\Str;
use Nwidart\Modules\Support\Config\GenerateConfigReader;
use Nwidart\Modules\Support\Stub;
use Nwidart\Modules\Traits\CanClearModulesCache;
use Nwidart\Modules\Traits\ModuleCommandTrait;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputOption;
class SeedMakeCommand extends GeneratorCommand
{
use CanClearModulesCache;
use ModuleCommandTrait;
protected $argumentName = 'name';
/**
* The console command name.
*/
protected $name = 'module:make-seed';
/**
* The console command description.
*/
protected $description = 'Generate new seeder for the specified module.';
/**
* Get the console command arguments.
*/
protected function getArguments(): array
{
return [
['name', InputArgument::REQUIRED, 'The name of seeder will be created.'],
['module', InputArgument::OPTIONAL, 'The name of module will be used.'],
];
}
/**
* Get the console command options.
*/
protected function getOptions(): array
{
return [
[
'master',
null,
InputOption::VALUE_NONE,
'Indicates the seeder will created is a master database seeder.',
],
];
}
protected function getTemplateContents(): mixed
{
$module = $this->laravel['modules']->findOrFail($this->getModuleName());
return (new Stub('/seeder.stub', [
'NAME' => $this->getSeederName(),
'MODULE' => $this->getModuleName(),
'NAMESPACE' => $this->getClassNamespace($module),
]))->render();
}
protected function getDestinationFilePath(): mixed
{
$this->clearCache();
$path = $this->laravel['modules']->getModulePath($this->getModuleName());
$seederPath = GenerateConfigReader::read('seeder');
return $path . $seederPath->getPath() . '/' . $this->getSeederName() . '.php';
}
/**
* Get the seeder name.
*/
private function getSeederName(): string
{
$string = $this->argument('name');
$string .= $this->option('master') ? 'Database' : '';
$suffix = 'Seeder';
if (strpos($string, $suffix) === false) {
$string .= $suffix;
}
return Str::studly($string);
}
/**
* Get default namespace.
*/
public function getDefaultNamespace(): string
{
$module = $this->laravel['modules'];
return $module->config('paths.generator.seeder.namespace') ?: $module->config('paths.generator.seeder.path', 'Database/Seeders');
}
}