Rename Predis\Connection\SingleConnectionInterface::pushInitCommand().

The new name is more explicit as it makes obvious that the commands
added with it will be executed upon connect().
This commit is contained in:
Daniele Alessandri
2013-12-15 11:06:43 +01:00
parent c40ad5dd47
commit 6ceebbfbec
13 changed files with 52 additions and 29 deletions
@@ -114,8 +114,13 @@ class StreamConnectionTest extends PredisConnectionTestCase
$connection = new StreamConnection($parameters);
if ($initialize) {
$connection->pushInitCommand($profile->createCommand('select', array($parameters->database)));
$connection->pushInitCommand($profile->createCommand('flushdb'));
$connection->addConnectCommand(
$profile->createCommand('select', array($parameters->database))
);
$connection->addConnectCommand(
$profile->createCommand('flushdb')
);
}
return $connection;