PHP code example of madnh / laravel-command-util

1. Go to this page and download the library: Download madnh/laravel-command-util library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

madnh / laravel-command-util example snippets




namespace App\Console\Commands;

use Illuminate\Console\Command;
use MaDnh\LaravelCommandUtil\CommandUtil;

class FooCommand extends Command
{
    use CommandUtil;
    
    //...
}

$this->banner('message'[, $options_as_array])

$this->softBanner('message'[, $options_as_array])

$this->header('message'[, $options_as_array])

$this->softHeader('message'[, $options_as_array])

$this->title('message'[, $options_as_array])

$this->softTitle('message'[, $options_as_array])

$this->paragraphTitle('message'[, $options_as_array])

$this->orderedList($items[, $options_as_array])

$this->unorderedList($items[, $list_item_char])

$this->softTitle('Accusamus ea sit eos iusto dolore nemo.');
$index = $this->orderedList($items);

$this->softTitle('Aliquid quam ea error provident et.');
$this->orderedList($items, $index);

$this->softTitle('Publish files');

while($file = array_shift($files)){
    $this->line($this->getListIndex().$file->getFilename());
}

$this->softTitle('Ut qui suscipit sequi sed.');
foreach ($items as $item) {
    $this->line($this->getListIndex().$item);
}

$this->resetOrderedList(30);

$this->softTitle('Eum beatae ea qui non aliquam.');
foreach ($items as $item) {
    $this->line($this->getListIndex().$item);
}