Make it possible to get the client instance used by a pipeline object.

This commit is contained in:
Daniele Alessandri
2011-12-01 20:42:37 +01:00
parent 1b3478ec2e
commit d81346641f
+10
View File
@@ -176,4 +176,14 @@ class PipelineContext
return $this->replies;
}
/**
* Returns the underlying client instance used by the pipeline object.
*
* @return Client
*/
public function getClient()
{
return $this->client;
}
}