PHP code example of mbergeon / php-unit-skell-n-gen

1. Go to this page and download the library: Download mbergeon/php-unit-skell-n-gen 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/ */

    

mbergeon / php-unit-skell-n-gen example snippets


use SkellNGen\CLI\UpdateTestCommand;

class Application extends AbstractApplication
{

    public function __construct()
    {
        //... add the following line to the existing content
        $this->add(new UpdateTestCommand);
    }