Test Failed
Push — dev ( ccede5...b27119 )
by Herberto
13:46
created
src/Core/Component/Blog/Application/Repository/DQL/CommentRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     }
43 43
 
44 44
     /**
45
-     * @return Comment[]
45
+     * @return ResultCollectionInterface
46 46
      */
47 47
     public function findAllByPostId(
48 48
         PostId $postId,
Please login to merge, or discard this patch.
src/Core/Component/Blog/Application/Repository/DQL/PostRepository.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     }
63 63
 
64 64
     /**
65
-     * @return Post[]
65
+     * @return ResultCollectionInterface
66 66
      */
67 67
     public function findAll(array $orderByList = ['id' => 'DESC'], int $maxResults = null): ResultCollectionInterface
68 68
     {
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     }
81 81
 
82 82
     /**
83
-     * @return Post[]
83
+     * @return ResultCollectionInterface
84 84
      */
85 85
     public function findAllByUserId(
86 86
         UserId $userId,
Please login to merge, or discard this patch.
src/Core/Component/Blog/Application/Repository/DQL/TagRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     }
46 46
 
47 47
     /**
48
-     * @return Tag[]
48
+     * @return ResultCollectionInterface
49 49
      */
50 50
     public function findAllByPostId(
51 51
         PostId $postId,
Please login to merge, or discard this patch.
src/Core/Component/User/Application/Repository/DQL/UserRepository.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     }
77 77
 
78 78
     /**
79
-     * @return User[]
79
+     * @return ResultCollectionInterface
80 80
      */
81 81
     public function findAll(array $orderByList = ['id' => 'DESC'], int $maxResults = null): ResultCollectionInterface
82 82
     {
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
     }
125 125
 
126 126
     /**
127
-     * @return User[]
127
+     * @return ResultCollectionInterface
128 128
      */
129 129
     public function findAllByCommentId(
130 130
         CommentId $commentId,
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
     }
151 151
 
152 152
     /**
153
-     * @return User[]
153
+     * @return ResultCollectionInterface
154 154
      */
155 155
     public function findAllByPostId(
156 156
         PostId $postId,
Please login to merge, or discard this patch.