PHP code example of ideationnet / wafer

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

    

ideationnet / wafer example snippets



use Zend\Diactoros\Response\HtmlResponse;
class Hello
{    
    public function __invoke()
    {
        return new HtmlResponse('Hello!');
    }
}



use IdNet\Wafer\Application;
use Example\Hello;

', Hello::class]
    ]

]);