Passed
Pull Request — master (#123)
by
unknown
04:23
created
Classes/Common/MetadataInterface.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,8 +22,7 @@
 block discarded – undo
22 22
  *
23 23
  * @abstract
24 24
  */
25
-interface MetadataInterface
26
-{
25
+interface MetadataInterface {
27 26
     /**
28 27
      * This extracts metadata from XML
29 28
      *
Please login to merge, or discard this patch.
Classes/Common/Indexer.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -32,8 +32,7 @@  discard block
 block discarded – undo
32 32
  *
33 33
  * @access public
34 34
  */
35
-class Indexer
36
-{
35
+class Indexer {
37 36
     /**
38 37
      * @access public
39 38
      * @static
@@ -604,8 +603,7 @@  discard block
 block discarded – undo
604 603
      *
605 604
      * @return array|string
606 605
      */
607
-    private static function removeAppendsFromAuthor($authors)
608
-    {
606
+    private static function removeAppendsFromAuthor($authors) {
609 607
         if (is_array($authors)) {
610 608
             foreach ($authors as $i => $author) {
611 609
                 $splitName = explode(pack('C', 31), $author);
@@ -685,7 +683,6 @@  discard block
 block discarded – undo
685 683
      *
686 684
      * @return void
687 685
      */
688
-    private function __construct()
689
-    {
686
+    private function __construct() {
690 687
     }
691 688
 }
Please login to merge, or discard this patch.
Classes/Common/AbstractDocument.php 1 patch
Braces   +7 added lines, -14 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@  discard block
 block discarded – undo
57 57
  * @property-read string $toplevelId this holds the toplevel structure's "@ID" (METS) or the manifest's "@id" (IIIF)
58 58
  * @property \SimpleXMLElement $xml this holds the whole XML file as \SimpleXMLElement object
59 59
  */
60
-abstract class AbstractDocument
61
-{
60
+abstract class AbstractDocument {
62 61
     /**
63 62
      * @access protected
64 63
      * @var Logger This holds the logger
@@ -838,8 +837,7 @@  discard block
 block discarded – undo
838 837
      * @return int|bool false if structure with $logId is not a child of this substructure,
839 838
      * or the actual depth.
840 839
      */
841
-    protected function getTreeDepth(array $structure, int $depth, string $logId)
842
-    {
840
+    protected function getTreeDepth(array $structure, int $depth, string $logId) {
843 841
         foreach ($structure as $element) {
844 842
             if ($element['id'] == $logId) {
845 843
                 return $depth;
@@ -862,8 +860,7 @@  discard block
 block discarded – undo
862 860
      *
863 861
      * @return int|bool tree depth as integer or false if no element with $logId exists within the TOC.
864 862
      */
865
-    public function getStructureDepth(string $logId)
866
-    {
863
+    public function getStructureDepth(string $logId) {
867 864
         return $this->getTreeDepth($this->magicGetTableOfContents(), 1, $logId);
868 865
     }
869 866
 
@@ -1122,8 +1119,7 @@  discard block
 block discarded – undo
1122 1119
      *
1123 1120
      * @return mixed The METS file's / IIIF manifest's record identifier
1124 1121
      */
1125
-    protected function magicGetRecordId()
1126
-    {
1122
+    protected function magicGetRecordId() {
1127 1123
         return $this->recordId;
1128 1124
     }
1129 1125
 
@@ -1193,8 +1189,7 @@  discard block
 block discarded – undo
1193 1189
      *
1194 1190
      * @return void
1195 1191
      */
1196
-    protected function __construct(int $pid, string $location, $preloadedDocument, array $settings = [])
1197
-    {
1192
+    protected function __construct(int $pid, string $location, $preloadedDocument, array $settings = []) {
1198 1193
         $this->pid = $pid;
1199 1194
         $this->setPreloadedDocument($preloadedDocument);
1200 1195
         $this->init($location, $settings);
@@ -1210,8 +1205,7 @@  discard block
 block discarded – undo
1210 1205
      *
1211 1206
      * @return mixed Value of $this->$var
1212 1207
      */
1213
-    public function __get(string $var)
1214
-    {
1208
+    public function __get(string $var) {
1215 1209
         $method = 'magicGet' . ucfirst($var);
1216 1210
         if (
1217 1211
             !property_exists($this, $var)
@@ -1272,8 +1266,7 @@  discard block
 block discarded – undo
1272 1266
      *
1273 1267
      * @return AbstractDocument|false
1274 1268
      */
1275
-    private static function getDocumentCache(string $location)
1276
-    {
1269
+    private static function getDocumentCache(string $location) {
1277 1270
         $cacheIdentifier = hash('md5', $location);
1278 1271
         $cache = GeneralUtility::makeInstance(CacheManager::class)->getCache('tx_dlf_doc');
1279 1272
         $cacheHit = $cache->get($cacheIdentifier);
Please login to merge, or discard this patch.
Classes/Command/ReindexCommand.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,8 +30,7 @@
 block discarded – undo
30 30
  *
31 31
  * @access public
32 32
  */
33
-class ReindexCommand extends BaseCommand
34
-{
33
+class ReindexCommand extends BaseCommand {
35 34
     /**
36 35
      * Configure the command by defining the name, options and arguments
37 36
      *
Please login to merge, or discard this patch.
Classes/Command/BaseCommand.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,8 +40,7 @@
 block discarded – undo
40 40
  *
41 41
  * @access public
42 42
  */
43
-class BaseCommand extends Command
44
-{
43
+class BaseCommand extends Command {
45 44
     /**
46 45
      * @access protected
47 46
      * @var CollectionRepository
Please login to merge, or discard this patch.
Classes/Command/HarvestCommand.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,8 +33,7 @@
 block discarded – undo
33 33
  *
34 34
  * @access public
35 35
  */
36
-class HarvestCommand extends BaseCommand
37
-{
36
+class HarvestCommand extends BaseCommand {
38 37
     /**
39 38
      * Configure the command by defining the name, options and arguments
40 39
      *
Please login to merge, or discard this patch.
Classes/Command/IndexCommand.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,8 +31,7 @@
 block discarded – undo
31 31
  *
32 32
  * @access public
33 33
  */
34
-class IndexCommand extends BaseCommand
35
-{
34
+class IndexCommand extends BaseCommand {
36 35
 
37 36
     /**
38 37
      * Configure the command by defining the name, options and arguments
Please login to merge, or discard this patch.
Classes/Domain/Repository/StructureRepository.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@
 block discarded – undo
22 22
  *
23 23
  * @access public
24 24
  */
25
-class StructureRepository extends Repository
26
-{
25
+class StructureRepository extends Repository {
27 26
 
28 27
 }
Please login to merge, or discard this patch.
Classes/Domain/Repository/MetadataRepository.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,8 +24,7 @@
 block discarded – undo
24 24
  *
25 25
  * @access public
26 26
  */
27
-class MetadataRepository extends Repository
28
-{
27
+class MetadataRepository extends Repository {
29 28
     /**
30 29
      * Finds all collection for the given settings
31 30
      *
Please login to merge, or discard this patch.