%PDF- %PDF-
Direktori : /var/www/html/o91-api/vendor/spatie/laravel-fractal/src/Console/Commands/ |
Current File : /var/www/html/o91-api/vendor/spatie/laravel-fractal/src/Console/Commands/TransformerMakeCommand.php |
<?php namespace Spatie\Fractal\Console\Commands; use Illuminate\Console\GeneratorCommand; class TransformerMakeCommand extends GeneratorCommand { /** * The name and signature of the console command. * * @var string */ protected $name = 'make:transformer'; /** * The console command description. * * @var string */ protected $description = 'Create a new Fractal transformer class'; /** * The type of class being generated. * * @var string */ protected $type = 'Transformer'; /** * Get the stub file for the generator. * * @return string */ protected function getStub() { return __DIR__.'/../stubs/transformer.stub'; } /** * Get the default namespace for the class. * * @param string $rootNamespace * @return string */ protected function getDefaultNamespace($rootNamespace) { return $rootNamespace.'\Transformers'; } }