Completed
Push — master ( 3d9909...7a8301 )
by Valentyn
03:23
created
src/Movies/Controller/MovieController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use App\Controller\BaseController;
6 6
 use App\Movies\Entity\Movie;
7 7
 use App\Movies\EventListener\AddRecommendationProcessor;
8
-use App\Movies\Pagination\MovieCollection;
9 8
 use App\Movies\Repository\MovieRecommendationRepository;
10 9
 use App\Movies\Repository\MovieRepository;
11 10
 use App\Movies\Request\CreateMovieRequest;
Please login to merge, or discard this patch.
src/Movies/Repository/MovieRepository.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -90,6 +90,9 @@  discard block
 block discarded – undo
90 90
         return $result;
91 91
     }
92 92
 
93
+    /**
94
+     * @param GuestSession|null $guestSession
95
+     */
93 96
     public function findAllWithIsGuestWatchedFlag(?GuestSession $guestSession)
94 97
     {
95 98
         $guestSessionId = $guestSession ? $guestSession->getId() : 0;
@@ -169,6 +172,9 @@  discard block
 block discarded – undo
169 172
         return $result;
170 173
     }
171 174
 
175
+    /**
176
+     * @param integer $tmdb_id
177
+     */
172 178
     public function findOneByIdOrTmdbId(?int $id = null, ?int $tmdb_id = null)
173 179
     {
174 180
         if ($id === null && $tmdb_id === null) {
Please login to merge, or discard this patch.