Skip to content

Commit

Permalink
PHPCBF: Space before opening parenthesis of function call
Browse files Browse the repository at this point in the history
  • Loading branch information
marczhermo committed Jun 7, 2019
1 parent f7a9a32 commit 8a145b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Services/SchemaService.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ protected function getFieldDefinition($fieldName, &$return, $copyField = null)
$boostedFields = $this->index->getBoostedFields();
foreach ($field as $name => $options) {
// Temporary short-name solution until the Introspection is properly solved
$name = explode ('\\', $name);
$name = explode('\\', $name);
$name = end($name);
// Boosted fields are always stored
$store = ($this->store || array_key_exists($fieldName, $boostedFields)) ? 'true' : 'false';
Expand Down

0 comments on commit 8a145b0

Please sign in to comment.