0
7
Login
Code
Issues
Pull requests
Events
Packages
6df463743589cadd294c96f0b46f4cefb2f9ff2a
6df463743589cadd294c96f0b46f4cefb2f9ff2a

Pretty Console

Latest Test Latest Stable Version Total Downloads License

image

Installation

composer require friendsofhyperf/pretty-console

Usage

<?php
use FriendsOfHyperf\PrettyConsole\Traits\Prettyable;
use Hyperf\Command\Command as HyperfCommand;
use Hyperf\Command\Annotation\Command;

#[Command]
class FooCommand extends HyperfCommand
{
    use Prettyable;

    public function function handle()
    {
        $this->components->info('Your message here.');
    }
}

Thanks