PHP Classes

File: console

Recommend this page to a friend!
  Classes of WsdlToPhp   PHP SOAP Package Generator   console   Download  
File: console
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP SOAP Package Generator
Generate package to call SOAP services using WSDL
Author: By
Last change:
Date: 8 years ago
Size: 336 bytes
 

Contents

Class file image Download
#!/usr/bin/env php <?php set_time_limit(0); require_once __DIR__.'/vendor/autoload.php'; use Symfony\Component\Console\Application; use WsdlToPhp\PackageGenerator\Command\GeneratePackageCommand; $console = new Application('WsdlToPhp PackageGenerator', '@git-version@'); $console->add(new GeneratePackageCommand()); $console->run();