Test Setup Failed
Push — graphql_api ( 4ff753 )
by Herberto
07:48 queued 01:35
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.