ChannelMakeCommand
class ChannelMakeCommand extends GeneratorCommand (View source)
Traits
Properties
static protected array | $macros | The registered string macros. | from Macroable |
protected Application | $laravel | The Laravel application instance. | from Command |
protected InputInterface | $input | The input interface implementation. | from Command |
protected OutputStyle | $output | The output interface implementation. | from Command |
protected string | $signature | The name and signature of the console command. | from Command |
protected string | $name | The console command name. | |
protected string | $description | The console command description. | |
$hidden | Indicates whether the command should be shown in the Artisan command list. | from Command | |
protected int | $verbosity | The default verbosity of output commands. | from Command |
protected array | $verbosityMap | The mapping between human readable verbosity levels and Symfony's OutputInterface. | from Command |
protected Filesystem | $files | The filesystem instance. | from GeneratorCommand |
protected string | $type | The type of class being generated. |
Methods
Dynamically handle calls to the class.
Dynamically handle calls to the class.
Configure the console command using a fluent definition.
Execute the console command.
Call another console command silently.
Create an input instance from the given arguments.
Get the value of a command argument.
Confirm a question with the user.
Prompt the user for input with auto completion.
Prompt the user for input with auto completion.
Prompt the user for input but hide the answer from the console.
Give the user a single choice from an array of answers.
Format input to textual table.
Write a string as information output.
Write a string as standard output.
Write a string as comment output.
Write a string as question output.
Write a string as error output.
Write a string as warning output.
Get the verbosity level in terms of Symfony's OutputInterface level.
Get the stub file for the generator.
Parse the class name and format according to the root namespace.
Get the default namespace for the class.
Build the directory for the class if necessary.
Build the class with the given name.
Replace the namespace for the given stub.
Get the full namespace for a given class, without the class name.
Replace the class name for the given stub.
Details
static void
macro(string $name, object|callable $macro)
Register a custom macro.
static mixed
__callStatic(string $method, array $parameters)
Dynamically handle calls to the class.
mixed
__call(string $method, array $parameters)
Dynamically handle calls to the class.
in GeneratorCommand at line 31
void
__construct(Filesystem $files)
Create a new controller creator command instance.
protected void
configureUsingFluentDefinition()
Configure the console command using a fluent definition.
protected void
specifyParameters()
Specify the arguments and options on the command.
int
run(InputInterface $input, OutputInterface $output)
Run the console command.
protected mixed
execute(InputInterface $input, OutputInterface $output)
Execute the console command.
int
call(string $command, array $arguments = [])
Call another console command.
int
callSilent(string $command, array $arguments = [])
Call another console command silently.
protected ArrayInput
createInputFromArguments(array $arguments)
Create an input instance from the given arguments.
bool
hasArgument(string|int $name)
Determine if the given argument is present.
string|array|null
argument(string|null $key = null)
Get the value of a command argument.
string|array|null
option(string|null $key = null)
Get the value of a command option.
bool
confirm(string $question, bool $default = false)
Confirm a question with the user.
mixed
ask(string $question, string|null $default = null)
Prompt the user for input.
mixed
anticipate(string $question, array $choices, string|null $default = null)
Prompt the user for input with auto completion.
mixed
askWithCompletion(string $question, array $choices, string|null $default = null)
Prompt the user for input with auto completion.
mixed
secret(string $question, bool $fallback = true)
Prompt the user for input but hide the answer from the console.
string
choice(string $question, array $choices, string|null $default = null, mixed|null $attempts = null, bool|null $multiple = null)
Give the user a single choice from an array of answers.
void
table(array $headers, Arrayable|array $rows, string $tableStyle = 'default', array $columnStyles = [])
Format input to textual table.
void
info(string $string, int|string|null $verbosity = null)
Write a string as information output.
void
line(string $string, string $style = null, int|string|null $verbosity = null)
Write a string as standard output.
void
comment(string $string, int|string|null $verbosity = null)
Write a string as comment output.
void
question(string $string, int|string|null $verbosity = null)
Write a string as question output.
void
error(string $string, int|string|null $verbosity = null)
Write a string as error output.
void
warn(string $string, int|string|null $verbosity = null)
Write a string as warning output.
protected int
parseVerbosity(string|int|null $level = null)
Get the verbosity level in terms of Symfony's OutputInterface level.
in GeneratorCommand at line 231
protected array
getArguments()
Get the console command arguments.
Application
getLaravel()
Get the Laravel application instance.
at line 50
protected string
getStub()
Get the stub file for the generator.
in GeneratorCommand at line 50
bool|null
handle()
Execute the console command.
in GeneratorCommand at line 83
protected string
qualifyClass(string $name)
Parse the class name and format according to the root namespace.
at line 61
protected string
getDefaultNamespace(string $rootNamespace)
Get the default namespace for the class.
in GeneratorCommand at line 117
protected bool
alreadyExists(string $rawName)
Determine if the class already exists.
in GeneratorCommand at line 128
protected string
getPath(string $name)
Get the destination class path.
in GeneratorCommand at line 141
protected string
makeDirectory(string $path)
Build the directory for the class if necessary.
at line 36
protected string
buildClass(string $name)
Build the class with the given name.
in GeneratorCommand at line 170
protected $this
replaceNamespace(string $stub, string $name)
Replace the namespace for the given stub.
in GeneratorCommand at line 187
protected string
getNamespace(string $name)
Get the full namespace for a given class, without the class name.
in GeneratorCommand at line 199
protected string
replaceClass(string $stub, string $name)
Replace the class name for the given stub.
in GeneratorCommand at line 211
protected string
getNameInput()
Get the desired class name from the input.
in GeneratorCommand at line 221
protected string
rootNamespace()
Get the root namespace for the class.