File "CreateTraitCommand.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/theanik/laravel-more-command/src/Commands/CreateTraitCommand.php
File size: 2.96 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Theanik\LaravelMoreCommand\Commands;
use Theanik\LaravelMoreCommand\Support\GenerateFile;
use Theanik\LaravelMoreCommand\Support\FileGenerator;
use Symfony\Component\Console\Input\InputArgument;
use Illuminate\Support\Str;
class CreateTraitCommand extends CommandGenerator
{
/**
* argumentName
*
* @var string
*/
public $argumentName = 'trait';
/**
* Name and signature of Command.
* name
* @var string
*/
protected $name = 'make:trait';
/**
* command description.
* description
* @var string
*/
protected $description = 'Command description';
/**
* Get Command argument EX : HasAuth
* getArguments
*
* @return array
*/
protected function getArguments(): array
{
return [
['trait', InputArgument::REQUIRED, 'The name of the trait'],
];
}
/**
* __construct
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* getTraitName
*
* @return string
*/
private function getTraitName(): string
{
return Str::studly($this->argument('trait'));
}
/**
* getDestinationFilePath
*
* @return string
*/
protected function getDestinationFilePath(): string
{
return app_path()."/Traits".'/'. $this->getTraitName() . '.php';
}
/**
* getTraitNameWithoutNamespace
*
* @return string
*/
private function getTraitNameWithoutNamespace(): string
{
return class_basename($this->getTraitName());
}
/**
* getDefaultNamespace
*
* @return string
*/
public function getDefaultNamespace() : string
{
return "App\\Traits";
}
/**
* getStubFilePath
*
* @return string
*/
protected function getStubFilePath(): string
{
return '/stubs/traits.stub';
}
/**
* getTemplateContents
*
* @return string
*/
protected function getTemplateContents(): string
{
return (new GenerateFile(__DIR__.$this->getStubFilePath(), [
'CLASS_NAMESPACE' => $this->getClassNamespace(),
'CLASS' => $this->getTraitNameWithoutNamespace()
]))->render();
}
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
$path = str_replace('\\', '/', $this->getDestinationFilePath());
if (!$this->laravel['files']->isDirectory($dir = dirname($path))) {
$this->laravel['files']->makeDirectory($dir, 0777, true);
}
$contents = $this->getTemplateContents();
try {
(new FileGenerator($path, $contents))->generate();
$this->info("Created : {$path}");
} catch (\Exception $e) {
$this->error("File : {$e->getMessage()}");
return E_ERROR;
}
return 0;
}
}