Skip to content

Commit

Permalink
fix (PHP7.3 compatible) - continue in switch -> continue 2
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmhh committed Feb 20, 2019
1 parent 9aca5e8 commit c0930a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/Zend/RedisProxy.php
Expand Up @@ -6,7 +6,7 @@
* @subpackage Backend
* @license http://www.gnu.org/licenses/agpl.html AGPL Version 3
* @author Paul Mehrer <p.mehrer@metaways.de>
* @copyright Copyright (c) 2018 Metaways Infosystems GmbH (http://www.metaways.de)
* @copyright Copyright (c) 2018-2019 Metaways Infosystems GmbH (http://www.metaways.de)
*/

if (defined('Redis::SERIALIZER_IGBINARY')) {
Expand Down Expand Up @@ -188,7 +188,7 @@ public function __call($_name, array $_arguments)
case 'connect':
case 'open':
case 'pconnect':
continue;
continue 2;
}

try {
Expand Down

0 comments on commit c0930a6

Please sign in to comment.