opensrs\Base::__construct PHP Method

__construct() public method

Closes an existing socket connection, if we have one
Since: 3.1
public __construct ( )
    public function __construct()
    {
        $this->_verifySystemProperties();
        $this->_opsHandler = new Ops();
    }

Usage Example

 public function __construct($formatString, $dataObject, $returnFullResponse = true)
 {
     parent::__construct();
     $this->_formatHolder = $formatString;
     $this->_validateObject($dataObject);
     $this->send($dataObject, $returnFullResponse);
 }
All Usage Examples Of opensrs\Base::__construct