Completed
Pull Request — master (#93)
by Janis
04:31
created
lib/Util/RedisUtil.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
             throw new NotFoundException($this->l10n->t('Message queueing capabilities are missing on the server.'));
73 73
         }
74 74
         $redis = new \Redis();
75
-        if (!$redis->connect($this->config->getAppValue($this->appName, 'redisHost'), intval($this->config->getAppValue($this->appName, 'redisPort')), 2.5, NULL, 100)) {
75
+        if (!$redis->connect($this->config->getAppValue($this->appName, 'redisHost'), intval($this->config->getAppValue($this->appName, 'redisPort')), 2.5, null, 100)) {
76 76
             $this->logger->debug('Cannot connect to Redis.');
77 77
             throw new NotFoundException($this->l10n->t('Cannot connect to Redis.'));
78 78
         }
Please login to merge, or discard this patch.