Skip to content

Commit

Permalink
styling issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix committed Jun 4, 2017
1 parent 1ac605e commit 3d12c31
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/AdWords.php
Expand Up @@ -103,8 +103,8 @@ public function keywordIdeas($keyword)
}

return $keywordIdeas;

}

/**
* Include Targeted Monthly Searches.
*
Expand Down
6 changes: 3 additions & 3 deletions src/AdWordsService.php
Expand Up @@ -156,12 +156,12 @@ private function getSearchParameters(array $keywords, $languageId, $locationId,
$relatedToQuerySearchParameter->setQueries($keywords);
$searchParameters[] = $relatedToQuerySearchParameter;

if(!is_null($included) or !is_null($excluded)){
if (!is_null($included) || !is_null($excluded)) {
$ideaTextFilterSearchParameter = new IdeaTextFilterSearchParameter();
if(!is_null($included)) {
if (!is_null($included)) {
$ideaTextFilterSearchParameter->setIncluded($included);
}
if(!is_null($excluded)) {
if (!is_null($excluded)) {
$ideaTextFilterSearchParameter->setExcluded($excluded);
}
$searchParameters[] = $ideaTextFilterSearchParameter;
Expand Down

0 comments on commit 3d12c31

Please sign in to comment.