Update code for PSR-2 compliance

This commit is contained in:
Robbie Averill 2018-09-07 11:47:34 +02:00
parent f703559d65
commit ef7ff75035
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ class SearchForm extends Form
$searchTerms = $request->requestVar('Search');
$query = SearchQuery::create()->addSearchTerm($searchTerms);
if($start = $request->requestVar('start')){
if ($start = $request->requestVar('start')) {
$query->setStart($start);
}