PHP code example of cesarcorreia / executable
1. Go to this page and download the library: Download cesarcorreia/executable 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/ */
cesarcorreia / executable example snippets
use CesarCorreia\Contracts\ShouldExecute;
use CesarCorreia\Traits\Executable;
class Example implements ShouldExecute
{
use Executable;
public function __construct()
{
}
public function handle(): self
{
return $this;
}
}