1234567891011121314151617181920 |
- <?php
- namespace Thrift\Service;
- use Dever;
- class Base
- {
- public $type;
- public $host;
- public $port;
- public $process;
- public function __construct($type = 'socket', $host = '0.0.0.0', $port = 8080, $process = 10)
- {
- $this->type = $type;
- $this->host = $host;
- $this->port = $port;
- $this->process = $process;
- }
- }
|