Skip to content
Snippets Groups Projects
Commit 1eadabd8 authored by Demian Katz's avatar Demian Katz
Browse files

php-cs-fixer: spaces_before_semicolon

parent b0f9076e
No related merge requests found
......@@ -2242,15 +2242,15 @@ class Voyager extends AbstractBase
$bindParams = array();
if ($course != '') {
$reserveWhere[] = "RESERVE_LIST_COURSES.COURSE_ID = :course" ;
$reserveWhere[] = "RESERVE_LIST_COURSES.COURSE_ID = :course";
$bindParams[':course'] = $course;
}
if ($inst != '') {
$reserveWhere[] = "RESERVE_LIST_COURSES.INSTRUCTOR_ID = :inst" ;
$reserveWhere[] = "RESERVE_LIST_COURSES.INSTRUCTOR_ID = :inst";
$bindParams[':inst'] = $inst;
}
if ($dept != '') {
$reserveWhere[] = "RESERVE_LIST_COURSES.DEPARTMENT_ID = :dept" ;
$reserveWhere[] = "RESERVE_LIST_COURSES.DEPARTMENT_ID = :dept";
$bindParams[':dept'] = $dept;
}
......
......@@ -62,7 +62,7 @@ class Options extends \VuFind\Search\Base\Options
* The set search mode
* @var string
*/
protected $searchMode ;
protected $searchMode;
/**
* Default expanders to apply
......@@ -612,7 +612,7 @@ class Options extends \VuFind\Search\Base\Options
$ssLimiterOptions = array();
if (isset($this->commonLimiters)) {
foreach ($this->commonLimiters as $key) {
$limiter = $this->limiterOptions[$key] ;
$limiter = $this->limiterOptions[$key];
$ssLimiterOptions[$key] = array(
'selectedvalue' => 'LIMIT|' . $key . ':y',
'description' => $this->getLabelForCheckboxFilter(
......
......@@ -263,7 +263,7 @@ abstract class EdsApi_REST_Base
}
$cnt = 0;
foreach ($value as $subValue) {
$cnt = $cnt + 1 ;
$cnt = $cnt + 1;
$finalParameterName = $parameterName;
if (SearchRequestModel::isParameterIndexed($key)) {
$finalParameterName = $parameterName . '-' . $cnt;
......
......@@ -72,7 +72,7 @@ class EbscoEdsApiException extends Exception
//AuthErrorMessages
if (isset($message['ErrorCode'])) {
$this->apiErrorDetails['ErrorCode'] = $message['ErrorCode'];
$this->apiErrorDetails['Description'] = $message['Reason'] ;
$this->apiErrorDetails['Description'] = $message['Reason'];
$this->apiErrorDetails['DetailedDescription']
= $message['AdditionalDetail'];
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment