===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
libphp-predis-0.8.3/CHANGELOG.md-387-- The `LIMIT` modifier for `ZRANGEBYSCORE` can be specified using either:
libphp-predis-0.8.3/CHANGELOG.md:388:  - an indexed array: `array($offset, $count)`
libphp-predis-0.8.3/CHANGELOG.md:389:  - an associative array: `array('offset' => $offset, 'count' => $count)`
libphp-predis-0.8.3/CHANGELOG.md-390-
##############################################
libphp-predis-0.8.3/examples/MultiExecTransactionsWithCAS.php-35-
libphp-predis-0.8.3/examples/MultiExecTransactionsWithCAS.php:36:    $client->multiExec($options, function ($tx) use ($key, &$element) {
libphp-predis-0.8.3/examples/MultiExecTransactionsWithCAS.php-37-        @list($element) = $tx->zrange($key, 0, 0);
##############################################
libphp-predis-0.8.3/examples/SessionHandler.php-34-if (isset($_SESSION['foo'])) {
libphp-predis-0.8.3/examples/SessionHandler.php:35:    echo "Session has `foo` set to {$_SESSION['foo']}\n";
libphp-predis-0.8.3/examples/SessionHandler.php-36-} else {
##############################################
libphp-predis-0.8.3/lib/Predis/Autoloader.php-57-            if (is_file($filepath)) {
libphp-predis-0.8.3/lib/Predis/Autoloader.php:58:                require($filepath);
libphp-predis-0.8.3/lib/Predis/Autoloader.php-59-            }
##############################################
libphp-predis-0.8.3/lib/Predis/Client.php-388-     */
libphp-predis-0.8.3/lib/Predis/Client.php:389:    protected function initMultiExec(Array $options = null, $callable = null)
libphp-predis-0.8.3/lib/Predis/Client.php-390-    {
##############################################
libphp-predis-0.8.3/lib/Predis/Connection/WebdisConnection.php-262-
libphp-predis-0.8.3/lib/Predis/Connection/WebdisConnection.php:263:        if (curl_exec($resource) === false) {
libphp-predis-0.8.3/lib/Predis/Connection/WebdisConnection.php-264-            $error = curl_error($resource);
##############################################
libphp-predis-0.8.3/tests/Predis/ClientTest.php-655-
libphp-predis-0.8.3/tests/Predis/ClientTest.php:656:        $this->assertInstanceOf('Predis\Transaction\MultiExecContext', $tx = $client->multiExec($options));
libphp-predis-0.8.3/tests/Predis/ClientTest.php-657-
##############################################
libphp-predis-0.8.3/tests/Predis/ClientTest.php-687-        $client = new Client($connection);
libphp-predis-0.8.3/tests/Predis/ClientTest.php:688:        $client->multiExec($options, $callable);
libphp-predis-0.8.3/tests/Predis/ClientTest.php-689-    }
##############################################
libphp-predis-0.8.3/tests/Predis/Command/ServerEvalSHATest.php-97-
libphp-predis-0.8.3/tests/Predis/Command/ServerEvalSHATest.php:98:        $this->assertSame($result, $redis->eval($lua, 2, 'foo', 'hoge', 'bar', 'piyo'));
libphp-predis-0.8.3/tests/Predis/Command/ServerEvalSHATest.php-99-        $this->assertSame($result, $redis->evalsha($sha1, 2, 'foo', 'hoge', 'bar', 'piyo'));
##############################################
libphp-predis-0.8.3/tests/Predis/Command/ServerEvalSHATest.php-112-
libphp-predis-0.8.3/tests/Predis/Command/ServerEvalSHATest.php:113:        $redis->eval($lua, 2, 'foo', 'hoge', 'bar', 'piyo');
libphp-predis-0.8.3/tests/Predis/Command/ServerEvalSHATest.php-114-        $redis->evalsha($sha1, 3, 'foo', 'hoge');
##############################################
libphp-predis-0.8.3/tests/Predis/Command/ServerEvalTest.php-96-
libphp-predis-0.8.3/tests/Predis/Command/ServerEvalTest.php:97:        $this->assertSame($result, $redis->eval($lua, 2, 'foo', 'hoge', 'bar', 'piyo'));
libphp-predis-0.8.3/tests/Predis/Command/ServerEvalTest.php-98-    }
##############################################
libphp-predis-0.8.3/tests/Predis/Command/ServerEvalTest.php-108-
libphp-predis-0.8.3/tests/Predis/Command/ServerEvalTest.php:109:        $redis->eval($lua, 3, 'foo', 'hoge');
libphp-predis-0.8.3/tests/Predis/Command/ServerEvalTest.php-110-    }
##############################################
libphp-predis-0.8.3/tests/Predis/Command/ServerScriptTest.php-67-
libphp-predis-0.8.3/tests/Predis/Command/ServerScriptTest.php:68:        $redis->eval($lua = 'return true', 0);
libphp-predis-0.8.3/tests/Predis/Command/ServerScriptTest.php-69-        $sha1 = sha1($lua);
##############################################
libphp-predis-0.8.3/tests/Predis/Transaction/MultiExecContextTest.php-485-        try {
libphp-predis-0.8.3/tests/Predis/Transaction/MultiExecContextTest.php:486:            $client->multiExec(function ($tx) {
libphp-predis-0.8.3/tests/Predis/Transaction/MultiExecContextTest.php-487-                $tx->set('foo', 'bar');
##############################################
libphp-predis-0.8.3/tests/Predis/Transaction/MultiExecContextTest.php-507-        try {
libphp-predis-0.8.3/tests/Predis/Transaction/MultiExecContextTest.php:508:            $client->multiExec(function ($tx) use ($value) {
libphp-predis-0.8.3/tests/Predis/Transaction/MultiExecContextTest.php-509-                $tx->set('foo', 'bar');
##############################################
libphp-predis-0.8.3/tests/Predis/Transaction/MultiExecContextTest.php-527-
libphp-predis-0.8.3/tests/Predis/Transaction/MultiExecContextTest.php:528:        $replies = $client->multiExec(function ($tx) {
libphp-predis-0.8.3/tests/Predis/Transaction/MultiExecContextTest.php-529-            $tx->set('foo', 'bar');
##############################################
libphp-predis-0.8.3/tests/Predis/Transaction/MultiExecContextTest.php-545-
libphp-predis-0.8.3/tests/Predis/Transaction/MultiExecContextTest.php:546:        $replies = $client->multiExec(function ($tx) {
libphp-predis-0.8.3/tests/Predis/Transaction/MultiExecContextTest.php-547-            $tx->set('foo', 'bar');
##############################################
libphp-predis-0.8.3/tests/Predis/Transaction/MultiExecContextTest.php-566-        try {
libphp-predis-0.8.3/tests/Predis/Transaction/MultiExecContextTest.php:567:            $client1->multiExec(array('watch' => 'sentinel'), function ($tx) use ($client2) {
libphp-predis-0.8.3/tests/Predis/Transaction/MultiExecContextTest.php-568-                $tx->set('sentinel', 'client1');
##############################################
libphp-predis-0.8.3/tests/Predis/Transaction/MultiExecContextTest.php-589-
libphp-predis-0.8.3/tests/Predis/Transaction/MultiExecContextTest.php:590:        $replies = $client->multiExec($options, function ($tx) {
libphp-predis-0.8.3/tests/Predis/Transaction/MultiExecContextTest.php-591-            $tx->watch('foobar');
##############################################
libphp-predis-0.8.3/tests/Predis/Transaction/MultiExecContextTest.php-607-        $options = array('watch' => 'foo', 'cas' => true, 'retry' => 1);
libphp-predis-0.8.3/tests/Predis/Transaction/MultiExecContextTest.php:608:        $replies = $client->multiExec($options, function ($tx) use ($client2, &$hijack) {
libphp-predis-0.8.3/tests/Predis/Transaction/MultiExecContextTest.php-609-            $foo = $tx->get('foo');