Move brace to new line

This commit is contained in:
Chris Boulton 2011-09-24 15:40:20 +10:00
parent c0cdc3cf68
commit 3514a4f063

View File

@ -385,7 +385,8 @@ class Resque_Worker
* Signal handler for SIGPIPE, in the event the redis connection has gone away.
* Attempts to reconnect to redis, or raises an Exception.
*/
public function reestablishRedisConnection() {
public function reestablishRedisConnection()
{
$this->log('SIGPIPE received; attempting to reconnect');
Resque::redis()->establishConnection();
}