Completed
Push — master ( 1af7e7...796d56 )
by Jeroen
16s
created
src/Kunstmaan/AdminBundle/Command/UpdateAclCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 use Symfony\Component\Console\Input\InputInterface;
9 9
 use Symfony\Component\Console\Output\OutputInterface;
10 10
 use Symfony\Component\Console\Question\ChoiceQuestion;
11
-use Symfony\Component\Security\Acl\Domain\Acl;
12 11
 use Symfony\Component\Security\Acl\Permission\PermissionMapInterface;
13 12
 
14 13
 /**
Please login to merge, or discard this patch.
AdminListBundle/AdminList/Configurator/ChangeableLimitInterface.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,6 +13,7 @@  discard block
 block discarded – undo
13 13
      * Bind current request.
14 14
      *
15 15
      * @param Request $request
16
+     * @return void
16 17
      */
17 18
     public function bindRequest(Request $request);
18 19
 
@@ -22,7 +23,7 @@  discard block
 block discarded – undo
22 23
     public function getLimit();
23 24
 
24 25
     /**
25
-     * @return array
26
+     * @return integer[]
26 27
      */
27 28
     public function getLimitOptions();
28 29
 }
Please login to merge, or discard this patch.
src/Kunstmaan/MediaBundle/Controller/MediaController.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -275,6 +275,10 @@  discard block
 block discarded – undo
275 275
         return $response;
276 276
     }
277 277
 
278
+    /**
279
+     * @param string $code
280
+     * @param string $message
281
+     */
278 282
     private function returnJsonError($code, $message)
279 283
     {
280 284
         return new JsonResponse(
@@ -457,7 +461,7 @@  discard block
 block discarded – undo
457 461
      * @Route("move/", name="KunstmaanMediaBundle_media_move")
458 462
      * @Method({"POST"})
459 463
      *
460
-     * @return string
464
+     * @return JsonResponse
461 465
      */
462 466
     public function moveMedia(Request $request)
463 467
     {
Please login to merge, or discard this patch.
src/Kunstmaan/NodeBundle/Controller/NodeAdminController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 use InvalidArgumentException;
9 9
 use Kunstmaan\AdminBundle\Entity\BaseUser;
10 10
 use Kunstmaan\AdminBundle\Entity\EntityInterface;
11
-use Kunstmaan\AdminBundle\Entity\User;
12 11
 use Kunstmaan\AdminBundle\FlashMessages\FlashTypes;
13 12
 use Kunstmaan\AdminBundle\Helper\FormWidgets\FormWidget;
14 13
 use Kunstmaan\AdminBundle\Helper\FormWidgets\Tabs\Tab;
Please login to merge, or discard this patch.
MultiDomainBundle/Tests/unit/Router/DomainBasedLocaleRouterTest.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -178,8 +178,8 @@  discard block
 block discarded – undo
178 178
     }
179 179
 
180 180
     /**
181
-     * @param $request
182
-     * @param null $nodeTranslation
181
+     * @param Request $request
182
+     * @param NodeTranslation $nodeTranslation
183 183
      *
184 184
      * @return Container
185 185
      */
@@ -243,6 +243,9 @@  discard block
 block discarded – undo
243 243
         return $request;
244 244
     }
245 245
 
246
+    /**
247
+     * @param NodeTranslation $nodeTranslation
248
+     */
246 249
     private function getEntityManager($nodeTranslation = null)
247 250
     {
248 251
         $em = $this->createMock('Doctrine\ORM\EntityManagerInterface');
Please login to merge, or discard this patch.
src/Kunstmaan/TaggingBundle/Entity/TagManager.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
     }
75 75
 
76 76
     /**
77
-     * @param $id
77
+     * @param integer|null $id
78 78
      *
79 79
      * @return mixed|null
80 80
      *
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
     /**
113 113
      * @param Taggable $item
114 114
      * @param $class
115
-     * @param $locale
115
+     * @param string $locale
116 116
      * @param int $nbOfItems
117 117
      *
118 118
      * @return array|null
Please login to merge, or discard this patch.
Tests/unit/EventListener/Security/MaxNumberByIpEventListenerTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 class MaxNumberByIpEventListenerTest extends \PHPUnit_Framework_TestCase
14 14
 {
15 15
     /**
16
-     * @param $returnNull
16
+     * @param boolean $returnNull
17 17
      * @param int $voteNumber
18 18
      *
19 19
      * @return \Kunstmaan\VotingBundle\Services\RepositoryResolver
Please login to merge, or discard this patch.