Run php-cs-fixer.

This commit is contained in:
Daniele Alessandri
2016-05-21 15:49:25 +02:00
parent 9e568396c6
commit f9e817f14c
3 changed files with 2 additions and 3 deletions
@@ -72,7 +72,7 @@ class HashKeyTest extends PredisTestCase
->method('hscan')
->with('key:hash', 0, array())
->will($this->returnValue(array(0, array(
1 => 'a', 2 => 'b', 3 => 100, 'foo' => 'bar'
1 => 'a', 2 => 'b', 3 => 100, 'foo' => 'bar',
))));
$iterator = new HashKey($client, 'key:hash');
@@ -507,7 +507,7 @@ class RedisClusterTest extends PredisTestCase
'GET', array('node:1001')
))
->will($this->throwException(
new Connection\ConnectionException($connection1, "Unknown connection error [127.0.0.1:6382]")
new Connection\ConnectionException($connection1, 'Unknown connection error [127.0.0.1:6382]')
));
$connection2 = $this->getMockConnection('tcp://127.0.0.1:6382');
@@ -83,5 +83,4 @@ class RequestSerializerTest extends PredisTestCase
$this->assertSame("*3\r\n$3\r\nDEL\r\n$5\r\nkey:1\r\n$5\r\nkey:2\r\n", $result);
}
}