From 686bd9c8d9d8599d8e3848227c57dba90c29c8f0 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Tue, 10 Feb 2015 13:49:44 -0500 Subject: [PATCH] php-cs-fixer: duplicate_semicolon --- module/VuDL/src/VuDL/Connection/Fedora.php | 2 +- module/VuFind/src/VuFind/ILS/Driver/ClaviusSQL.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/module/VuDL/src/VuDL/Connection/Fedora.php b/module/VuDL/src/VuDL/Connection/Fedora.php index 36b3ad09589..5dbe876932a 100644 --- a/module/VuDL/src/VuDL/Connection/Fedora.php +++ b/module/VuDL/src/VuDL/Connection/Fedora.php @@ -286,7 +286,7 @@ class Fedora extends AbstractBase return $op['id']; }, $items - );; + ); } } // No sequence? Title sort. diff --git a/module/VuFind/src/VuFind/ILS/Driver/ClaviusSQL.php b/module/VuFind/src/VuFind/ILS/Driver/ClaviusSQL.php index a657347c2b1..3b7451ee9eb 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/ClaviusSQL.php +++ b/module/VuFind/src/VuFind/ILS/Driver/ClaviusSQL.php @@ -257,7 +257,7 @@ class ClaviusSQL extends AbstractBase $sqlSt = $this->db->prepare($sql); $sqlSt->execute(); $result = $sqlSt->fetchAll(); - $return = array('count' => count($result), 'results' => array());; + $return = array('count' => count($result), 'results' => array()); foreach ($result as $row) { $return['results'][] = array( 'id' => $this->getLongId($row['tcislo'], $row['druhdoku']) -- GitLab