⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.180
Server IP:
13.127.59.50
Server:
Linux ip-172-31-46-210 5.15.0-1033-aws #37~20.04.1-Ubuntu SMP Fri Mar 17 11:39:30 UTC 2023 x86_64
Server Software:
Apache/2.4.41 (Ubuntu)
PHP Version:
7.4.3-4ubuntu2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
ubuntu
/
vendor
/
facade
/
ignition
/
src
/
Commands
/
View File Name :
SolutionProviderMakeCommand.php
<?php namespace Facade\Ignition\Commands; use Illuminate\Console\GeneratorCommand; class SolutionProviderMakeCommand extends GeneratorCommand { /** * The console command name. * * @var string */ protected $name = 'ignition:make-solution-provider'; /** * The console command description. * * @var string */ protected $description = 'Create a new custom Ignition solution provider class'; /** * The type of class being generated. * * @var string */ protected $type = 'Solution Provider'; /** * Get the stub file for the generator. * * @return string */ protected function getStub() { return __DIR__.'/stubs/solution-provider.stub'; } /** * Get the default namespace for the class. * * @param string $rootNamespace * @return string */ protected function getDefaultNamespace($rootNamespace) { return $rootNamespace.'\SolutionProviders'; } }