Passed
Push — master ( 6a016e...e51dd6 )
by Ralf
09:24
created
Classes/Domain/Repository/FileRepository.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -17,11 +17,9 @@  discard block
 block discarded – undo
17 17
 /**
18 18
  * The repository for Files
19 19
  */
20
-class FileRepository extends \TYPO3\CMS\Extbase\Persistence\Repository
21
-{
20
+class FileRepository extends \TYPO3\CMS\Extbase\Persistence\Repository {
22 21
 
23
-    public function getSecondaryFilesByDocument(\EWW\Dpf\Domain\Model\Document $document)
24
-    {
22
+    public function getSecondaryFilesByDocument(\EWW\Dpf\Domain\Model\Document $document) {
25 23
 
26 24
         $query = $this->createQuery();
27 25
         $query->matching(
@@ -34,8 +32,7 @@  discard block
 block discarded – undo
34 32
         return $query->execute();
35 33
     }
36 34
 
37
-    public function getPrimaryFileByDocument(\EWW\Dpf\Domain\Model\Document $document)
38
-    {
35
+    public function getPrimaryFileByDocument(\EWW\Dpf\Domain\Model\Document $document) {
39 36
 
40 37
         $query = $this->createQuery();
41 38
         $query->matching(
Please login to merge, or discard this patch.