From 1eadabd8dd6f546693b9b86b15953335be40cf75 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Tue, 10 Feb 2015 14:24:06 -0500 Subject: [PATCH] php-cs-fixer: spaces_before_semicolon --- module/VuFind/src/VuFind/ILS/Driver/Voyager.php | 6 +++--- module/VuFind/src/VuFind/Search/EDS/Options.php | 4 ++-- module/VuFindSearch/src/VuFindSearch/Backend/EDS/Base.php | 2 +- .../VuFindSearch/src/VuFindSearch/Backend/EDS/Exception.php | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/module/VuFind/src/VuFind/ILS/Driver/Voyager.php b/module/VuFind/src/VuFind/ILS/Driver/Voyager.php index 5b3004f54df..69ef017add9 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Voyager.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Voyager.php @@ -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; } diff --git a/module/VuFind/src/VuFind/Search/EDS/Options.php b/module/VuFind/src/VuFind/Search/EDS/Options.php index 66192ec1e41..1b090ec50ec 100644 --- a/module/VuFind/src/VuFind/Search/EDS/Options.php +++ b/module/VuFind/src/VuFind/Search/EDS/Options.php @@ -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( diff --git a/module/VuFindSearch/src/VuFindSearch/Backend/EDS/Base.php b/module/VuFindSearch/src/VuFindSearch/Backend/EDS/Base.php index 4fc0033aa82..fa67a39cbed 100644 --- a/module/VuFindSearch/src/VuFindSearch/Backend/EDS/Base.php +++ b/module/VuFindSearch/src/VuFindSearch/Backend/EDS/Base.php @@ -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; diff --git a/module/VuFindSearch/src/VuFindSearch/Backend/EDS/Exception.php b/module/VuFindSearch/src/VuFindSearch/Backend/EDS/Exception.php index f1aedf6ae22..529bbcd824f 100644 --- a/module/VuFindSearch/src/VuFindSearch/Backend/EDS/Exception.php +++ b/module/VuFindSearch/src/VuFindSearch/Backend/EDS/Exception.php @@ -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']; } -- GitLab