Completed
Push — master ( b87c44...b5d8bc )
by Tim
14:02
created
Classes/Utility/FileUtility.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,12 +26,12 @@
 block discarded – undo
26 26
      */
27 27
     public static function getFileByMetaData($uid)
28 28
     {
29
-        $row = GeneralUtility::makeInstance(SysFileMetadataRepository::class)->findByUid((int) $uid);
29
+        $row = GeneralUtility::makeInstance(SysFileMetadataRepository::class)->findByUid((int)$uid);
30 30
         if (!isset($row['file'])) {
31 31
             throw new \Exception('File not found in metadata', 1475144028);
32 32
         }
33 33
 
34
-        return self::getFileByUid((int) $row['file']);
34
+        return self::getFileByUid((int)$row['file']);
35 35
     }
36 36
 
37 37
     /**
Please login to merge, or discard this patch.
Classes/Domain/Repository/AbstractRawRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
         $connection->update(
55 55
             $this->getTableName(),
56 56
             $values,
57
-            ['uid' => (int) $uid]
57
+            ['uid' => (int)$uid]
58 58
         );
59 59
     }
60 60
 
Please login to merge, or discard this patch.