PHP code example of iquety / console
1. Go to this page and download the library: Download iquety/console 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/ */
iquety / console example snippets
class MyRoutine extends Routine
{
protected function initialize(): void
{
$this->setName("my-routine");
$this->addOption(
new Option('-r', '--read', 'Read a text file', Option::REQUIRED)
);
}
protected function handle(Arguments $arguments): void
{
$this->info("Hello");
}
}
#!/bin/php
gv);
$terminal = new Iquety\Console\Terminal("/root/of/super/application");
$terminal->loadRoutinesFrom("/directory/of/routines");
$terminal->run($argv);