diff --git a/module/VuFind/src/VuFind/Controller/Plugin/Holds.php b/module/VuFind/src/VuFind/Controller/Plugin/Holds.php index 9223cb10398480ec2218c20d00246c88fcde68c5..1b6e3f31353430611d86351b07d0b10eeff714d0 100644 --- a/module/VuFind/src/VuFind/Controller/Plugin/Holds.php +++ b/module/VuFind/src/VuFind/Controller/Plugin/Holds.php @@ -266,7 +266,8 @@ class Holds extends AbstractPlugin * * @return int A timestamp representing the default required date */ - public function getDefaultRequiredDate($checkHolds) { + public function getDefaultRequiredDate($checkHolds) + { $dateArray = isset($checkHolds['defaultRequiredDate']) ? explode(":", $checkHolds['defaultRequiredDate']) : array(0, 1, 0); diff --git a/module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php b/module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php index 615e6ba3b674e121975a978c2daaff1bedf99d52..16b112273194d27c0f86ce05af85e47a96de6b14 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php +++ b/module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php @@ -192,7 +192,9 @@ class MultiBackend extends AbstractBase implements ServiceLocatorAwareInterface if ($pos > 0) { return substr($id, 0, $pos); } - //error_log("MultiBackend: Can't find source id in '$id' using '$delimiter'"); + //error_log( + // "MultiBackend: Can't find source id in '$id' using '$delimiter'" + //); return $id; } diff --git a/module/VuFind/src/VuFind/Resolver/Driver/Ezb.php b/module/VuFind/src/VuFind/Resolver/Driver/Ezb.php index 32ca36238c81fcf1ddb6899612aae3dab94302f9..a7bf537dd01b8ce9af70540cc10884ac56cf006b 100644 --- a/module/VuFind/src/VuFind/Resolver/Driver/Ezb.php +++ b/module/VuFind/src/VuFind/Resolver/Driver/Ezb.php @@ -61,8 +61,8 @@ class Ezb implements DriverInterface /** * Constructor * - * @param string $baseUrl Base URL for link resolver - * @param \Zend\Http\Client $client HTTP client + * @param string $baseUrl Base URL for link resolver + * @param \Zend\Http\Client $httpClient HTTP client */ public function __construct($baseUrl, \Zend\Http\Client $httpClient) { diff --git a/module/VuFind/src/VuFind/Resolver/Driver/Sfx.php b/module/VuFind/src/VuFind/Resolver/Driver/Sfx.php index 19c049503a60d86b2b08f88ea2d5be5ffde50188..619aadbbef4a67f210d858c3bb6fee6cbfad9774 100644 --- a/module/VuFind/src/VuFind/Resolver/Driver/Sfx.php +++ b/module/VuFind/src/VuFind/Resolver/Driver/Sfx.php @@ -58,8 +58,8 @@ class Sfx implements DriverInterface /** * Constructor * - * @param string $baseUrl Base URL for link resolver - * @param \Zend\Http\Client $client HTTP client + * @param string $baseUrl Base URL for link resolver + * @param \Zend\Http\Client $httpClient HTTP client */ public function __construct($baseUrl, \Zend\Http\Client $httpClient) { diff --git a/module/VuFind/src/VuFind/Resolver/Driver/Threesixtylink.php b/module/VuFind/src/VuFind/Resolver/Driver/Threesixtylink.php index 84c05e44d334fbdb4980b028a866001fc8a8be06..192b598c1d709506450c6c7d40ed4e043b54f95c 100644 --- a/module/VuFind/src/VuFind/Resolver/Driver/Threesixtylink.php +++ b/module/VuFind/src/VuFind/Resolver/Driver/Threesixtylink.php @@ -58,8 +58,8 @@ class Threesixtylink implements DriverInterface /** * Constructor * - * @param string $baseUrl Base URL for link resolver - * @param \Zend\Http\Client $client HTTP client + * @param string $baseUrl Base URL for link resolver + * @param \Zend\Http\Client $httpClient HTTP client */ public function __construct($baseUrl, \Zend\Http\Client $httpClient) { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/Citation.php b/module/VuFind/src/VuFind/View/Helper/Root/Citation.php index 80874ba585267b833ecdcf63b1d74a0ce360311d..d01077053b1d66ccbaab197c4d2ba691e5a688a3 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/Citation.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/Citation.php @@ -283,7 +283,8 @@ class Citation extends \Zend\View\Helper\AbstractHelper if (strlen($date) > 4) { try { $year = $this->dateConverter->convertFromDisplayDate('Y', $date); - $month = $this->dateConverter->convertFromDisplayDate('M', $date) . '.'; + $month = $this->dateConverter->convertFromDisplayDate('M', $date) + . '.'; $day = $this->dateConverter->convertFromDisplayDate('j', $date); } catch (DateException $e) { // If conversion fails, use raw date as year -- not ideal,