PHP code example of akeneo / phpspec-skip-example-extension

1. Go to this page and download the library: Download akeneo/phpspec-skip-example-extension 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/ */

    

akeneo / phpspec-skip-example-extension example snippets


/**
 * @ss BridgeBuilderSpec extends ObjectBehavior
{
    // Will be skipped if the Vendor\Builder\ToolInterface interface does not exist
    function it_builds_a_brige()
    {
    }

    // Will be skipped if the Vendor\Builder\ToolInterface interface does not exist
    function it_builds_the_road()
    {
    }

    //...
}
bash
$ php composer.phar update akeneo/phpspec-skip-example-extension