🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-15 05:59:40 | PHP 8.1.34
📂
/ (Root)
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
vendor
/
illuminate
/
contracts
/
Redis
📍 /opt/cpanel/ea-wappspector/vendor/rector/rector/vendor/illuminate/contracts/Redis
🔄 Refresh
✏️
Editing: Connection.php
Read Only
<?php namespace RectorPrefix202411\Illuminate\Contracts\Redis; use Closure; interface Connection { /** * Subscribe to a set of given channels for messages. * * @param array|string $channels * @param \Closure $callback * @return void */ public function subscribe($channels, Closure $callback); /** * Subscribe to a set of given channels with wildcards. * * @param array|string $channels * @param \Closure $callback * @return void */ public function psubscribe($channels, Closure $callback); /** * Run a command against the Redis database. * * @param string $method * @param array $parameters * @return mixed */ public function command($method, array $parameters = []); }
💾 Save Changes
❌ Cancel