コード例 #1
0
ファイル: _ide_helper.php プロジェクト: whplay/ohmate-shop
 /**
  * Subscribe to a set of given channels for messages.
  *
  * @param array|string $channels
  * @param \Closure $callback
  * @param string $connection
  * @param string $method
  * @return void 
  * @static 
  */
 public static function subscribe($channels, $callback, $connection = null, $method = 'subscribe')
 {
     \Illuminate\Redis\Database::subscribe($channels, $callback, $connection, $method);
 }
コード例 #2
0
ファイル: _ide_helper.php プロジェクト: purplebleed/hljtnbdm
 /**
  * Subscribe to a set of given channels for messages.
  *
  * @param array|string $channels
  * @param \Closure $callback
  * @param string $connection
  * @return void 
  * @static 
  */
 public static function subscribe($channels, $callback, $connection = null)
 {
     \Illuminate\Redis\Database::subscribe($channels, $callback, $connection);
 }