Skip to content

Commit

Permalink
[BUGFIX] add missing migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
kaystrobach committed Jul 20, 2021
1 parent 25897c3 commit 87731b6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ class SearchableRepository extends Repository implements SearchableRepositoryInt
protected $mapperUtility;

/**
* @Flow\Inject()
* @var LoggerInterface
*/
protected $logger;
Expand Down
1 change: 1 addition & 0 deletions Classes/KayStrobach/VisualSearch/Utility/MapperUtility.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
class MapperUtility
{
/**
* @Flow\Inject()
* @var LoggerInterface
*/
protected $logger;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ public function initializeArguments()
public function render()
{
$response = $this->initiateSubRequest();
if (is_string($response)) {
return $response;
}
return $response->getContent();
}
}

0 comments on commit 87731b6

Please sign in to comment.