Skip to content

Commit

Permalink
Merge pull request #131 from riasvdv/analysis-1bbMAw
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
Rias authored Jan 3, 2020
2 parents 33071b0 + ed8276a commit 3a89a03
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/jobs/MakeSearchable.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function execute($queue)
return $engine->scoutIndex->indexName === $this->indexName;
});

if (! $engine) {
if (!$engine) {
return;
}

Expand Down
4 changes: 2 additions & 2 deletions src/variables/ScoutVariable.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ public function algoliaApplicationId(): string
return Scout::$plugin->getSettings()->getApplicationId();
}

public function algoliaAdminApiKey() : string
public function algoliaAdminApiKey(): string
{
return Scout::$plugin->getSettings()->getAdminApiKey();
}

public function algoliaSearchApiKey() : string
public function algoliaSearchApiKey(): string
{
return Scout::$plugin->getSettings()->getSearchApiKey();
}
Expand Down

0 comments on commit 3a89a03

Please # to comment.