Completed
Push — master ( ac7de6...93eb40 )
by Valentyn
07:02
created
src/Movies/Pagination/MovieCollection.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 
17 17
     /**
18 18
      * @param array|Movie[]|\Iterator $movies
19
-     * @param $totalCount
19
+     * @param integer $totalCount
20 20
      * @param int $offset
21 21
      */
22 22
     public function __construct($movies, $totalCount, int $offset = 0)
Please login to merge, or discard this patch.
src/Movies/Repository/MovieRepository.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -89,6 +89,9 @@
 block discarded – undo
89 89
         return $result;
90 90
     }
91 91
 
92
+    /**
93
+     * @param GuestSession|null $guestSession
94
+     */
92 95
     public function findAllWithIsGuestWatchedFlag(?GuestSession $guestSession)
93 96
     {
94 97
         $guestSessionId = $guestSession ? $guestSession->getId() : 0;
Please login to merge, or discard this patch.