Completed
Push — master ( 5416cd...d3c65f )
by Valentyn
03:14
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.
src/Movies/Service/TmdbSearchService.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
      * @throws TmdbRequestLimitException
38 38
      * @throws \Psr\SimpleCache\InvalidArgumentException
39 39
      *
40
-     * @return array
40
+     * @return string
41 41
      */
42 42
     public function findMoviesByQuery(string $query, string $locale = 'en', $data = []): array
43 43
     {
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      * @throws TmdbRequestLimitException
63 63
      * @throws \Psr\SimpleCache\InvalidArgumentException
64 64
      *
65
-     * @return array
65
+     * @return string
66 66
      */
67 67
     public function findMovieById(int $tmdb_id, string $locale = 'en'): array
68 68
     {
Please login to merge, or discard this patch.