Skip to content

Commit

Permalink
fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
edbizarro committed Dec 29, 2016
1 parent ff59d5b commit 35341fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Services/Insights/AdInsights.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public function getInsights($objectId, $params = [])
$fields = $params['fields'];
unset($params['fields']);

$ad = new Ad($objectId);
$insights = $ad->getInsights($fields, $params);
$adObject = new Ad($objectId);
$insights = $adObject->getInsights($fields, $params);

return $this->response($insights);
}
Expand Down

0 comments on commit 35341fc

Please sign in to comment.