forked from flipboxstudio/lumen-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request flipboxstudio#63 from joelhy/feat/make-factory
feat: add 'php artisan make:factory' support
- Loading branch information
Showing
4 changed files
with
219 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
<?php | ||
|
||
namespace Flipbox\LumenGenerator\Console; | ||
|
||
use Symfony\Component\Console\Input\InputOption; | ||
|
||
class FactoryMakeCommand extends GeneratorCommand | ||
{ | ||
/** | ||
* The console command name. | ||
* | ||
* @var string | ||
*/ | ||
protected $name = 'make:factory'; | ||
|
||
/** | ||
* The console command description. | ||
* | ||
* @var string | ||
*/ | ||
protected $description = 'Create a new model factory'; | ||
|
||
/** | ||
* The type of class being generated. | ||
* | ||
* @var string | ||
*/ | ||
protected $type = 'Factory'; | ||
|
||
/** | ||
* Get the stub file for the generator. | ||
* | ||
* @return string | ||
*/ | ||
protected function getStub() | ||
{ | ||
return __DIR__.'/stubs/factory.stub'; | ||
} | ||
|
||
/** | ||
* Build the class with the given name. | ||
* | ||
* @param string $name | ||
* @return string | ||
*/ | ||
protected function buildClass($name) | ||
{ | ||
$namespaceModel = $this->option('model') | ||
? $this->qualifyClass($this->option('model')) | ||
: trim($this->rootNamespace(), '\\').'\\Model'; | ||
|
||
$model = class_basename($namespaceModel); | ||
|
||
return str_replace( | ||
[ | ||
'NamespacedDummyModel', | ||
'DummyModel', | ||
], | ||
[ | ||
$namespaceModel, | ||
$model, | ||
], | ||
parent::buildClass($name) | ||
); | ||
} | ||
|
||
/** | ||
* Get the destination class path. | ||
* | ||
* @param string $name | ||
* @return string | ||
*/ | ||
protected function getPath($name) | ||
{ | ||
$name = str_replace( | ||
['\\', '/'], '', $this->argument('name') | ||
); | ||
|
||
return $this->laravel->databasePath()."/factories/{$name}.php"; | ||
} | ||
|
||
/** | ||
* Get the console command options. | ||
* | ||
* @return array | ||
*/ | ||
protected function getOptions() | ||
{ | ||
return [ | ||
['model', 'm', InputOption::VALUE_OPTIONAL, 'The name of the model'], | ||
]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
/** @var \Illuminate\Database\Eloquent\Factory $factory */ | ||
|
||
use Faker\Generator as Faker; | ||
use NamespacedDummyModel; | ||
|
||
$factory->define(DummyModel::class, function (Faker $faker) { | ||
return [ | ||
// | ||
]; | ||
}); |
Oops, something went wrong.