class AppNameCommand extends Command (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.

protected bool $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 Composer $composer

The Composer class instance.

protected Filesystem $files

The filesystem instance.

protected string $currentRoot

Current root application namespace.

Methods

static void
macro(string $name, object|callable $macro)

Register a custom macro.

static void
mixin(object $mixin)

Mix another object into the class.

static bool
hasMacro(string $name)

Checks if macro is registered.

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.

void
__construct(Composer $composer, Filesystem $files)

Create a new key generator command.

void
configureUsingFluentDefinition()

Configure the console command using a fluent definition.

from  Command
void
specifyParameters()

Specify the arguments and options on the command.

from  Command
int
run(InputInterface $input, OutputInterface $output)

Run the console command.

from  Command
mixed
execute(InputInterface $input, OutputInterface $output)

Execute the console command.

from  Command
int
call(string $command, array $arguments = [])

Call another console command.

from  Command
int
callSilent(string $command, array $arguments = [])

Call another console command silently.

from  Command
ArrayInput
createInputFromArguments(array $arguments)

Create an input instance from the given arguments.

from  Command
array
context()

Get all of the context passed to the command.

from  Command
bool
hasArgument(string|int $name)

Determine if the given argument is present.

from  Command
string|array
argument(string|null $key = null)

Get the value of a command argument.

from  Command
array
arguments()

Get all of the arguments passed to the command.

from  Command
bool
hasOption(string $name)

Determine if the given option is present.

from  Command
string|array
option(string $key = null)

Get the value of a command option.

from  Command
array
options()

Get all of the options passed to the command.

from  Command
bool
confirm(string $question, bool $default = false)

Confirm a question with the user.

from  Command
string
ask(string $question, string $default = null)

Prompt the user for input.

from  Command
string
anticipate(string $question, array $choices, string $default = null)

Prompt the user for input with auto completion.

from  Command
string
askWithCompletion(string $question, array $choices, string $default = null)

Prompt the user for input with auto completion.

from  Command
string
secret(string $question, bool $fallback = true)

Prompt the user for input but hide the answer from the console.

from  Command
string
choice(string $question, array $choices, string $default = null, mixed $attempts = null, bool $multiple = null)

Give the user a single choice from an array of answers.

from  Command
void
table(array $headers, Arrayable|array $rows, string $tableStyle = 'default', array $columnStyles = [])

Format input to textual table.

from  Command
void
info(string $string, null|int|string $verbosity = null)

Write a string as information output.

from  Command
void
line(string $string, string $style = null, null|int|string $verbosity = null)

Write a string as standard output.

from  Command
void
comment(string $string, null|int|string $verbosity = null)

Write a string as comment output.

from  Command
void
question(string $string, null|int|string $verbosity = null)

Write a string as question output.

from  Command
void
error(string $string, null|int|string $verbosity = null)

Write a string as error output.

from  Command
void
warn(string $string, null|int|string $verbosity = null)

Write a string as warning output.

from  Command
void
alert(string $string)

Write a string in an alert box.

from  Command
void
setVerbosity(string|int $level)

Set the verbosity level.

from  Command
int
parseVerbosity(string|int $level = null)

Get the verbosity level in terms of Symfony's OutputInterface level.

from  Command
array
getArguments()

Get the console command arguments.

array
getOptions()

Get the console command options.

from  Command
OutputInterface
getOutput()

Get the output implementation.

from  Command
getLaravel()

Get the Laravel application instance.

from  Command
void
setLaravel(Container $laravel)

Set the Laravel application instance.

from  Command
void
handle()

Execute the console command.

void
setAppDirectoryNamespace()

Set the namespace on the files in the app directory.

void
replaceNamespace(string $path)

Replace the App namespace at the given path.

void
setBootstrapNamespaces()

Set the bootstrap namespaces.

void
setConfigNamespaces()

Set the namespace in the appropriate configuration files.

void
setAppConfigNamespaces()

Set the application provider namespaces.

void
setAuthConfigNamespace()

Set the authentication User namespace.

void
setServicesConfigNamespace()

Set the services User namespace.

void
setComposerNamespace()

Set the PSR-4 namespace in the Composer file.

void
setDatabaseFactoryNamespaces()

Set the namespace in database factory files.

void
replaceIn(string $path, string|array $search, string|array $replace)

Replace the given string in the given file.

string
getBootstrapPath()

Get the path to the bootstrap/app.php file.

string
getComposerPath()

Get the path to the Composer.json file.

string
getConfigPath(string $name)

Get the path to the given configuration file.

Details

static void macro(string $name, object|callable $macro)

Register a custom macro.

Parameters

string $name
object|callable $macro

Return Value

void

static void mixin(object $mixin)

Mix another object into the class.

Parameters

object $mixin

Return Value

void

static bool hasMacro(string $name)

Checks if macro is registered.

Parameters

string $name

Return Value

bool

static mixed __callStatic(string $method, array $parameters)

Dynamically handle calls to the class.

Parameters

string $method
array $parameters

Return Value

mixed

Exceptions

BadMethodCallException

mixed __call(string $method, array $parameters)

Dynamically handle calls to the class.

Parameters

string $method
array $parameters

Return Value

mixed

Exceptions

BadMethodCallException

void __construct(Composer $composer, Filesystem $files)

Create a new key generator command.

Parameters

Composer $composer
Filesystem $files

Return Value

void

protected void configureUsingFluentDefinition()

Configure the console command using a fluent definition.

Return Value

void

protected void specifyParameters()

Specify the arguments and options on the command.

Return Value

void

int run(InputInterface $input, OutputInterface $output)

Run the console command.

Parameters

InputInterface $input
OutputInterface $output

Return Value

int

protected mixed execute(InputInterface $input, OutputInterface $output)

Execute the console command.

Parameters

InputInterface $input
OutputInterface $output

Return Value

mixed

int call(string $command, array $arguments = [])

Call another console command.

Parameters

string $command
array $arguments

Return Value

int

int callSilent(string $command, array $arguments = [])

Call another console command silently.

Parameters

string $command
array $arguments

Return Value

int

protected ArrayInput createInputFromArguments(array $arguments)

Create an input instance from the given arguments.

Parameters

array $arguments

Return Value

ArrayInput

protected array context()

Get all of the context passed to the command.

Return Value

array

bool hasArgument(string|int $name)

Determine if the given argument is present.

Parameters

string|int $name

Return Value

bool

string|array argument(string|null $key = null)

Get the value of a command argument.

Parameters

string|null $key

Return Value

string|array

array arguments()

Get all of the arguments passed to the command.

Return Value

array

bool hasOption(string $name)

Determine if the given option is present.

Parameters

string $name

Return Value

bool

string|array option(string $key = null)

Get the value of a command option.

Parameters

string $key

Return Value

string|array

array options()

Get all of the options passed to the command.

Return Value

array

bool confirm(string $question, bool $default = false)

Confirm a question with the user.

Parameters

string $question
bool $default

Return Value

bool

string ask(string $question, string $default = null)

Prompt the user for input.

Parameters

string $question
string $default

Return Value

string

string anticipate(string $question, array $choices, string $default = null)

Prompt the user for input with auto completion.

Parameters

string $question
array $choices
string $default

Return Value

string

string askWithCompletion(string $question, array $choices, string $default = null)

Prompt the user for input with auto completion.

Parameters

string $question
array $choices
string $default

Return Value

string

string secret(string $question, bool $fallback = true)

Prompt the user for input but hide the answer from the console.

Parameters

string $question
bool $fallback

Return Value

string

string choice(string $question, array $choices, string $default = null, mixed $attempts = null, bool $multiple = null)

Give the user a single choice from an array of answers.

Parameters

string $question
array $choices
string $default
mixed $attempts
bool $multiple

Return Value

string

void table(array $headers, Arrayable|array $rows, string $tableStyle = 'default', array $columnStyles = [])

Format input to textual table.

Parameters

array $headers
Arrayable|array $rows
string $tableStyle
array $columnStyles

Return Value

void

void info(string $string, null|int|string $verbosity = null)

Write a string as information output.

Parameters

string $string
null|int|string $verbosity

Return Value

void

void line(string $string, string $style = null, null|int|string $verbosity = null)

Write a string as standard output.

Parameters

string $string
string $style
null|int|string $verbosity

Return Value

void

void comment(string $string, null|int|string $verbosity = null)

Write a string as comment output.

Parameters

string $string
null|int|string $verbosity

Return Value

void

void question(string $string, null|int|string $verbosity = null)

Write a string as question output.

Parameters

string $string
null|int|string $verbosity

Return Value

void

void error(string $string, null|int|string $verbosity = null)

Write a string as error output.

Parameters

string $string
null|int|string $verbosity

Return Value

void

void warn(string $string, null|int|string $verbosity = null)

Write a string as warning output.

Parameters

string $string
null|int|string $verbosity

Return Value

void

void alert(string $string)

Write a string in an alert box.

Parameters

string $string

Return Value

void

protected void setVerbosity(string|int $level)

Set the verbosity level.

Parameters

string|int $level

Return Value

void

protected int parseVerbosity(string|int $level = null)

Get the verbosity level in terms of Symfony's OutputInterface level.

Parameters

string|int $level

Return Value

int

protected array getArguments()

Get the console command arguments.

Return Value

array

protected array getOptions()

Get the console command options.

Return Value

array

OutputInterface getOutput()

Get the output implementation.

Return Value

OutputInterface

Application getLaravel()

Get the Laravel application instance.

Return Value

Application

void setLaravel(Container $laravel)

Set the Laravel application instance.

Parameters

Container $laravel

Return Value

void

void handle()

Execute the console command.

Return Value

void

protected void setAppDirectoryNamespace()

Set the namespace on the files in the app directory.

Return Value

void

protected void replaceNamespace(string $path)

Replace the App namespace at the given path.

Parameters

string $path

Return Value

void

protected void setBootstrapNamespaces()

Set the bootstrap namespaces.

Return Value

void

protected void setConfigNamespaces()

Set the namespace in the appropriate configuration files.

Return Value

void

protected void setAppConfigNamespaces()

Set the application provider namespaces.

Return Value

void

protected void setAuthConfigNamespace()

Set the authentication User namespace.

Return Value

void

protected void setServicesConfigNamespace()

Set the services User namespace.

Return Value

void

protected void setComposerNamespace()

Set the PSR-4 namespace in the Composer file.

Return Value

void

protected void setDatabaseFactoryNamespaces()

Set the namespace in database factory files.

Return Value

void

protected void replaceIn(string $path, string|array $search, string|array $replace)

Replace the given string in the given file.

Parameters

string $path
string|array $search
string|array $replace

Return Value

void

protected string getBootstrapPath()

Get the path to the bootstrap/app.php file.

Return Value

string

protected string getComposerPath()

Get the path to the Composer.json file.

Return Value

string

protected string getConfigPath(string $name)

Get the path to the given configuration file.

Parameters

string $name

Return Value

string