Skip to content

Commit

Permalink
Merge pull request facebookarchive#367 from mlebkowski/fix/breaking-c…
Browse files Browse the repository at this point in the history
…hanges

revert interface change
  • Loading branch information
gfosco committed Feb 24, 2015
2 parents 93ea67b + 6c904f9 commit e7425cf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Facebook/HttpClients/FacebookCurlHttpClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public function getResponseHttpStatusCode()
*
* @throws \Facebook\FacebookSDKException
*/
public function send($url, $method = 'GET', array $parameters = array())
public function send($url, $method = 'GET', $parameters = array())
{
$this->openConnection($url, $method, $parameters);
$this->tryToSendRequest();
Expand Down
2 changes: 1 addition & 1 deletion src/Facebook/HttpClients/FacebookGuzzleHttpClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public function getResponseHttpStatusCode()
*
* @throws \Facebook\FacebookSDKException
*/
public function send($url, $method = 'GET', array $parameters = array())
public function send($url, $method = 'GET', $parameters = array())
{
$options = array();
if ($parameters) {
Expand Down
2 changes: 1 addition & 1 deletion src/Facebook/HttpClients/FacebookHttpable.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ public function getResponseHttpStatusCode();
*
* @throws \Facebook\FacebookSDKException
*/
public function send($url, $method = 'GET', array $parameters = array());
public function send($url, $method = 'GET', $parameters = array());

}
2 changes: 1 addition & 1 deletion src/Facebook/HttpClients/FacebookStreamHttpClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public function getResponseHttpStatusCode()
*
* @throws \Facebook\FacebookSDKException
*/
public function send($url, $method = 'GET', array $parameters = array())
public function send($url, $method = 'GET', $parameters = array())
{
$options = array(
'http' => array(
Expand Down

0 comments on commit e7425cf

Please sign in to comment.