You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 10, 2019. It is now read-only.
PHP Fatal error: Class PhalconSwoole\Request contains 4 abstract methods and must therefore be declared abstract or implement the remaining methods (Phalcon\Http\RequestInterface::getPort, Phalcon\Http\RequestInterface::isPurge, Phalcon\Http\RequestInterface::isTrace, ...) in /opt/app/vendor/HessianZ/phalcon-swoole/src/PhalconSwoole/Request.php on line 14
The text was updated successfully, but these errors were encountered:
You must implement abstract method. Add this on vendor/HessianZ/phalcon-swoole/src/PhalconSwoole/Request.php
public function getPort() {
return $this->request->header['port'];
}
public function isPurge() {
return $this->isMethod('PURGE');
}
public function isTrace() {
return $this->isMethod('TRACE');
}
public function isConnect() {
return $this->isMethod('CONNECT');
}
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
PHP Fatal error: Class PhalconSwoole\Request contains 4 abstract methods and must therefore be declared abstract or implement the remaining methods (Phalcon\Http\RequestInterface::getPort, Phalcon\Http\RequestInterface::isPurge, Phalcon\Http\RequestInterface::isTrace, ...) in /opt/app/vendor/HessianZ/phalcon-swoole/src/PhalconSwoole/Request.php on line 14
The text was updated successfully, but these errors were encountered: