Hprose\Service::__construct PHP Method

__construct() public method

public __construct ( )
    public function __construct()
    {
        parent::__construct();
        $this->errorTypes = error_reporting();
        register_shutdown_function(array($this, 'fatalErrorHandler'));
        $this->addMethod('getNextId', $this, '#', array('simple' => true));
    }

Usage Example

Example #1
0
 public function __construct()
 {
     parent::__construct();
     $this->timer = new Timer($this);
 }