8889841chome/clixcotz/mars.clix.co.tz/vendor/cboden/ratchet/src/Ratchet/AbstractConnectionDecorator.php000066600000001723150540265540027005 0ustar00wrappedConn = $conn; } /** * @return ConnectionInterface */ protected function getConnection() { return $this->wrappedConn; } public function __set($name, $value) { $this->wrappedConn->$name = $value; } public function __get($name) { return $this->wrappedConn->$name; } public function __isset($name) { return isset($this->wrappedConn->$name); } public function __unset($name) { unset($this->wrappedConn->$name); } }