PHP code example of lanfisis / raoul

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

    

lanfisis / raoul example snippets


$generator = new Raoul\Generator('myawesomeservice.wsdl', 'MyAwesomeService');
$generator->setNamespace('MyCompany');
$generator->setFolder(__DIR__.'/src');
$generator->setHeader(array (
    'author'    => 'David Buros <[email protected]>',
    'copyright' => '2014 David Buros',
));
$generator->generate(true);