Completed
Push — master ( dec339...be4783 )
by Petr
03:53
created
src/AppBundle/Entity/Infrasctucture/AbstractRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     }
33 33
 
34 34
     /**
35
-     * @param object $entity
35
+     * @param \AppBundle\Entity\Event $entity
36 36
      */
37 37
     public function remove($entity)
38 38
     {
Please login to merge, or discard this patch.
src/AppBundle/Controller/Infrastructure/RestController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
     }
100 100
 
101 101
     /**
102
-     * @param string|int $id
102
+     * @param string $id
103 103
      */
104 104
     protected function viewEntity(AbstractRepository $repository, $id): Response
105 105
     {
Please login to merge, or discard this patch.
src/AppBundle/Controller/BandController.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -344,7 +344,6 @@  discard block
 block discarded – undo
344 344
      *     }
345 345
      * )
346 346
      * @param string $bandName band name
347
-     * @param string $userLogin member login
348 347
      */
349 348
     public function updateMemberAction(Request $request, string $bandName)
350 349
     {
@@ -382,7 +381,7 @@  discard block
 block discarded – undo
382 381
     }
383 382
 
384 383
     /**
385
-     * @return ApiError|CreatedApiResponse|EmptyApiResponse
384
+     * @return AbstractApiResponse
386 385
      */
387 386
     private function createResponseFromUpdateForm(FormInterface $form): AbstractApiResponse
388 387
     {
Please login to merge, or discard this patch.