PHP code example of yzh52521 / webman-command

1. Go to this page and download the library: Download yzh52521/webman-command 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/ */

    

yzh52521 / webman-command example snippets


namespace app\command;

use Illuminate\Console\Command;

class Test extends Command
{
    protected $signature = 'test';

    protected $description = 'Test run command';

    public function handle(): void
    {
        $this->info("test!");
    }
}

use \yzh52521\command\facade\Artisan;
Artisan::call('test');

php artisan test