It would be great if you will add closures support into the subscribe method. For example: ``` $redis->subscribe(array($channel), function($redis, $channel, $message){ echo 'Handle message ' . $message . ' for chanel ' . $channel . PHP_EOL; }); ```