ShowCommand
class ShowCommand extends DatabaseInspectionCommand (View source)
Traits
Properties
| protected Factory internal | $components | The console components factory.  | 
                from InteractsWithIO | 
| protected InputInterface | $input | The input interface implementation.  | 
                from InteractsWithIO | 
| protected OutputStyle | $output | The output interface implementation.  | 
                from InteractsWithIO | 
| protected int | $verbosity | The default verbosity of output commands.  | 
                from InteractsWithIO | 
| protected array | $verbosityMap | The mapping between human readable verbosity levels and Symfony's OutputInterface.  | 
                from InteractsWithIO | 
| protected Signals|null | $signals | The signal registrar instance.  | 
                from InteractsWithSignals | 
| static protected array | $macros | The registered string macros.  | 
                from Macroable | 
| protected Application | $laravel | The Laravel application instance.  | 
                from Command | 
| protected string | $signature | The name and signature of the console command.  | 
                |
| protected string | $name | The console command name.  | 
                from Command | 
| protected string | $description | The console command description.  | 
                |
| protected string | $help | The console command help text.  | 
                from Command | 
| $hidden | Indicates whether the command should be shown in the Artisan command list.  | 
                from Command | |
| protected array | $typeMappings | A map of database column types.  | 
                from DatabaseInspectionCommand | 
| protected Composer | $composer | The Composer instance.  | 
                from DatabaseInspectionCommand | 
Methods
Resolve the console command instance for the given command.
Call another console command.
Call another console command without output.
Call another console command without output.
Run the given the console command.
Create an input instance from the given arguments.
Get the value of a command argument.
Get the value of a command option.
Confirm a question with the user.
Prompt the user for input.
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.
Execute a given callback while advancing a progress bar.
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.
Write a string in an alert box.
Get the verbosity level in terms of Symfony's OutputInterface level.
Define a callback to be run when the given signal(s) occurs.
Interact with the user before validating the input.
Prompt the user for any missing arguments.
Prompt for missing input arguments using the returned questions.
Perform actions after the user was prompted for missing arguments.
Whether the input contains any options that differ from the default values.
Mix another object into the class.
Dynamically handle calls to the class.
Dynamically handle calls to the class.
Create a new command instance.
Configure the console command using a fluent definition.
Execute the console command.
Get a command isolation mutex instance for the command.
Register the custom Doctrine type mappings for inspection commands.
Get a human-readable platform name for the given platform.
Get the size of a MySQL table in bytes.
Get the size of a Postgres table in bytes.
Get the size of a SQLite table in bytes.
Get the number of open connections for a database.
Get the connection configuration details for the given connection.
Ensure the dependencies for the database commands are available.
Get information regarding the tables within the database.
Get information regarding the views within the database.
Render the database information.
Render the database information as JSON.
Render the database information formatted for the CLI.
Details
        
            abstract        protected        Command
    resolveCommand(Command|string $command)
        
    
    Resolve the console command instance for the given command.
        
                            int
    call(Command|string $command, array $arguments = [])
        
    
    Call another console command.
        
                            int
    callSilent(Command|string $command, array $arguments = [])
        
    
    Call another console command without output.
        
                            int
    callSilently(Command|string $command, array $arguments = [])
        
    
    Call another console command without output.
        
                    protected        int
    runCommand(Command|string $command, array $arguments, OutputInterface $output)
        
    
    Run the given the console command.
        
                    protected        ArrayInput
    createInputFromArguments(array $arguments)
        
    
    Create an input instance from the given arguments.
        
                    protected        array
    context()
        
    
    Get all of the context passed to the command.
        
                    protected        void
    specifyParameters()
        
    
    Specify the arguments and options on the command.
        
                    protected        array
    getArguments()
        
    
    Get the console command arguments.
        
                    protected        array
    getOptions()
        
    
    Get the console command options.
        
                            bool
    hasArgument(string|int $name)
        
    
    Determine if the given argument is present.
        
                            array|string|bool|null
    argument(string|null $key = null)
        
    
    Get the value of a command argument.
        
                            array
    arguments()
        
    
    Get all of the arguments passed to the command.
        
                            bool
    hasOption(string $name)
        
    
    Determine if the given option is present.
        
                            string|array|bool|null
    option(string|null $key = null)
        
    
    Get the value of a command option.
        
                            array
    options()
        
    
    Get all of the options passed to the command.
        
                            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|callable $choices, string|null $default = null)
        
    
    Prompt the user for input with auto completion.
        
                            mixed
    askWithCompletion(string $question, array|callable $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|array
    choice(string $question, array $choices, string|int|null $default = null, mixed|null $attempts = null, bool $multiple = false)
        
    
    Give the user a single choice from an array of answers.
        
                            void
    table(array $headers, Arrayable|array $rows, TableStyle|string $tableStyle = 'default', array $columnStyles = [])
        
    
    Format input to textual table.
        
                            mixed|void
    withProgressBar(iterable|int $totalSteps, Closure $callback)
        
    
    Execute a given callback while advancing a progress bar.
        
                            void
    info(string $string, int|string|null $verbosity = null)
        
    
    Write a string as information output.
        
                            void
    line(string $string, string|null $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.
        
                            void
    alert(string $string, int|string|null $verbosity = null)
        
    
    Write a string in an alert box.
        
                            $this
    newLine(int $count = 1)
        
    
    Write a blank line.
        
                            void
    setInput(InputInterface $input)
        
    
    Set the input interface implementation.
        
                            void
    setOutput(OutputStyle $output)
        
    
    Set the output interface implementation.
        
                    protected        void
    setVerbosity(string|int $level)
        
    
    Set the verbosity level.
        
                    protected        int
    parseVerbosity(string|int|null $level = null)
        
    
    Get the verbosity level in terms of Symfony's OutputInterface level.
        
                            OutputStyle
    getOutput()
        
    
    Get the output implementation.
        
                            void
    trap(iterable<array-key,int>|int $signals, $callback)
        
    
    Define a callback to be run when the given signal(s) occurs.
        
                            void
    untrap()
        
    
    | internal | 
Untrap signal handlers set within the command's handler.
        
                    protected        void
    interact(InputInterface $input, OutputInterface $output)
        
    
    Interact with the user before validating the input.
        
                    protected        void
    promptForMissingArguments(InputInterface $input, OutputInterface $output)
        
    
    Prompt the user for any missing arguments.
        
                    protected        array
    promptForMissingArgumentsUsing()
        
    
    Prompt for missing input arguments using the returned questions.
        
                    protected        void
    afterPromptingForMissingArguments(InputInterface $input, OutputInterface $output)
        
    
    Perform actions after the user was prompted for missing arguments.
        
                    protected        bool
    didReceiveOptions(InputInterface $input)
        
    
    Whether the input contains any options that differ from the default values.
        
                static            void
    macro(string $name, object|callable $macro)
        
    
    Register a custom macro.
        
                static            void
    mixin(object $mixin, bool $replace = true)
        
    
    Mix another object into the class.
        
                static            bool
    hasMacro(string $name)
        
    
    Checks if macro is registered.
        
                static            void
    flushMacros()
        
    
    Flush the existing macros.
        
                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|null $composer = null)
        
    
    Create a new command instance.
        
                    protected        void
    configureUsingFluentDefinition()
        
    
    Configure the console command using a fluent definition.
        
                    protected        void
    configureIsolation()
        
    
    Configure the console command for isolation.
        
                            int
    run(InputInterface $input, OutputInterface $output)
        
    
    Run the console command.
        
                    protected        int
    execute(InputInterface $input, OutputInterface $output)
        
    
    Execute the console command.
        
                    protected        CommandMutex
    commandIsolationMutex()
        
    
    Get a command isolation mutex instance for the command.
        
                            bool
    isHidden()
        
    
    {@inheritdoc}
        
                            Command
    setHidden(bool $hidden = true)
        
    
    {@inheritdoc}
        
                            Application
    getLaravel()
        
    
    Get the Laravel application instance.
        
                            void
    setLaravel(Container $laravel)
        
    
    Set the Laravel application instance.
        
                    protected        void
    registerTypeMappings(AbstractPlatform $platform)
        
    
    Register the custom Doctrine type mappings for inspection commands.
        
                    protected        string
    getPlatformName(AbstractPlatform $platform, string $database)
        
    
    Get a human-readable platform name for the given platform.
        
                    protected        int|null
    getTableSize(ConnectionInterface $connection, string $table)
        
    
    Get the size of a table in bytes.
        
                    protected        mixed
    getMySQLTableSize(ConnectionInterface $connection, string $table)
        
    
    Get the size of a MySQL table in bytes.
        
                    protected        mixed
    getPostgresTableSize(ConnectionInterface $connection, string $table)
        
    
    Get the size of a Postgres table in bytes.
        
                    protected        mixed
    getSqliteTableSize(ConnectionInterface $connection, string $table)
        
    
    Get the size of a SQLite table in bytes.
        
                    protected        int|null
    getConnectionCount(ConnectionInterface $connection)
        
    
    Get the number of open connections for a database.
        
                    protected        array
    getConfigFromDatabase(string $database)
        
    
    Get the connection configuration details for the given connection.
        
                    protected        bool
    ensureDependenciesExist()
        
    
    Ensure the dependencies for the database commands are available.
        
                    protected        void
    installDependencies()
        
    
    Install the command's dependencies.
        
                            int
    handle(ConnectionResolverInterface $connections)
        
    
    Execute the console command.
        
                    protected        Collection
    tables(ConnectionInterface $connection, AbstractSchemaManager $schema)
        
    
    Get information regarding the tables within the database.
        
                    protected        Collection
    collectViews(ConnectionInterface $connection, AbstractSchemaManager $schema)
        
    
    Get information regarding the views within the database.
        
                    protected        void
    display(array $data)
        
    
    Render the database information.
        
                    protected        void
    displayJson(array $data)
        
    
    Render the database information as JSON.
        
                    protected        void
    displayForCli(array $data)
        
    
    Render the database information formatted for the CLI.