Sha256: c6ff58e980b128e5d2b71ab9daeb5d290f45f038b30e518bad0d74e2482b77b0
Contents?: true
Size: 407 Bytes
Versions: 12
Compression:
Stored size: 407 Bytes
Contents
#!/usr/bin/env php <?php /** * main entry point for starting a Cuke4Php wire server * @package Cuke4Php */ /** * load the Cuke4Php server */ require_once dirname(__FILE__) . "/../lib/Cuke4Php.php"; $aOptions = getopt("p:"); if (array_key_exists('p',$aOptions)) { $iPort = $aOptions['p']; } else { $iPort = null; } $oServer = new Cuke4Php(realpath($argv[$argc-1]), $iPort); $oServer->run(); ?>
Version data entries
12 entries across 12 versions & 1 rubygems