diff --git a/.travis.yml b/.travis.yml index 18360af1704..bf859552ec0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,6 @@ php: matrix: fast_finish: true allow_failures: - - php: 7.1 - php: nightly include: - php: 7.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 38c89499bb4..9c4d10d96d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ # [3.1.2](https://github.com/phalcon/cphalcon/releases/tag/v3.1.2) (2017-XX-XX) +- Fixed PHP 7.1 issues [#12055](https://github.com/phalcon/cphalcon/issues/12055) # [3.1.1](https://github.com/phalcon/cphalcon/releases/tag/v3.1.1) (2017-03-25) - Fixed undefined index warning on existing cached resultsets diff --git a/phalcon/queue/beanstalk.zep b/phalcon/queue/beanstalk.zep index fa37c3957e7..89d6beb1d3c 100644 --- a/phalcon/queue/beanstalk.zep +++ b/phalcon/queue/beanstalk.zep @@ -562,7 +562,7 @@ class Beanstalk /** * Writes data to the socket. Performs a connection if none is available */ - protected function write(string data) -> boolean|int + public function write(string data) -> boolean|int { var connection, packet;