Completed
Push — 5.0 ( cadd37...918ecf )
by Ruud
100:31 queued 89:28
created
src/Kunstmaan/MediaBundle/Helper/RemoteVideo/RemoteVideoHandler.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@
 block discarded – undo
28 28
     /**
29 29
      * Constructor. Takes the configuration of the RemoveVideoHandler
30 30
      * @param array $configuration
31
+     * @param integer $priority
31 32
      */
32 33
     public function __construct($priority, $configuration = array())
33 34
     {
Please login to merge, or discard this patch.
src/Kunstmaan/MediaBundle/Repository/FolderRepository.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
     /**
130 130
      * @param int $folderId
131 131
      *
132
-     * @return object
132
+     * @return Folder
133 133
      * @throws EntityNotFoundException
134 134
      */
135 135
     public function getFolder($folderId)
@@ -166,6 +166,7 @@  discard block
 block discarded – undo
166 166
 
167 167
     /**
168 168
      * {@inheritdoc}
169
+     * @param Folder $node
169 170
      */
170 171
     public function getPathQueryBuilder($node)
171 172
     {
@@ -336,7 +337,7 @@  discard block
 block discarded – undo
336 337
 
337 338
     /**
338 339
      * @param Folder $folder
339
-     * @param        $parent
340
+     * @param        Folder $parent
340 341
      */
341 342
     private function persistInOrderedTree(Folder $folder, $parent)
342 343
     {
Please login to merge, or discard this patch.
src/Kunstmaan/MenuBundle/Controller/MenuAdminListController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
      *
51 51
      * @param Request $request
52 52
      *
53
-     * @return array
53
+     * @return \Symfony\Component\HttpFoundation\Response
54 54
      */
55 55
     public function indexAction(Request $request)
56 56
     {
Please login to merge, or discard this patch.
src/Kunstmaan/MenuBundle/Controller/MenuItemAdminListController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      *
101 101
      * @Route("/{menuid}/items/add", name="kunstmaanmenubundle_admin_menuitem_add")
102 102
      * @Method({"GET", "POST"})
103
-     * @return array
103
+     * @return Response
104 104
      */
105 105
     public function addAction(Request $request, $menuid)
106 106
     {
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
      * @Route("{menuid}/items/{id}/edit", requirements={"id" = "\d+"}, name="kunstmaanmenubundle_admin_menuitem_edit")
116 116
      * @Method({"GET", "POST"})
117 117
      *
118
-     * @return array
118
+     * @return Response
119 119
      */
120 120
     public function editAction(Request $request, $menuid, $id)
121 121
     {
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
      * @Route("{menuid}/items/{id}/delete", requirements={"id" = "\d+"}, name="kunstmaanmenubundle_admin_menuitem_delete")
131 131
      * @Method({"GET", "POST"})
132 132
      *
133
-     * @return array
133
+     * @return Response
134 134
      */
135 135
     public function deleteAction(Request $request, $menuid, $id)
136 136
     {
Please login to merge, or discard this patch.
Kunstmaan/MultiDomainBundle/Helper/AdminPanel/SitesAdminPanelAdaptor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 class SitesAdminPanelAdaptor implements AdminPanelAdaptorInterface
10 10
 {
11 11
     /**
12
-     * @return AdminPanelActionInterface[]
12
+     * @return AdminPanelAction[]
13 13
      */
14 14
     public function getAdminPanelActions()
15 15
     {
Please login to merge, or discard this patch.
MultiDomainBundle/Tests/EventListener/HostOverrideListenerTest.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -171,6 +171,11 @@
 block discarded – undo
171 171
         return $listener;
172 172
     }
173 173
 
174
+    /**
175
+     * @param Request $request
176
+     *
177
+     * @return \Symfony\Component\HttpKernel\Event\FilterResponseEvent
178
+     */
174 179
     private function getFilterResponseEvent($request, $response, $requestType = HttpKernelInterface::MASTER_REQUEST)
175 180
     {
176 181
         $event = $this->getMockBuilder('Symfony\Component\HttpKernel\Event\FilterResponseEvent')
Please login to merge, or discard this patch.
src/Kunstmaan/MultiDomainBundle/Tests/Helper/DomainConfigurationTest.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -285,6 +285,9 @@  discard block
 block discarded – undo
285 285
         $this->assertEquals(array('en'), $object->getBackendLocales());
286 286
     }
287 287
 
288
+    /**
289
+     * @return \Symfony\Component\DependencyInjection\ContainerInterface
290
+     */
288 291
     private function getContainer($map, $request)
289 292
     {
290 293
         $container = $this->getMock('Symfony\Component\DependencyInjection\ContainerInterface');
@@ -390,6 +393,9 @@  discard block
 block discarded – undo
390 393
         return $request;
391 394
     }
392 395
 
396
+    /**
397
+     * @param string $uri
398
+     */
393 399
     private function getRequestWithOverride($uri)
394 400
     {
395 401
         $session = new Session(new MockArraySessionStorage());
@@ -402,6 +408,9 @@  discard block
 block discarded – undo
402 408
         return $request;
403 409
     }
404 410
 
411
+    /**
412
+     * @param Request $request
413
+     */
405 414
     private function getDomainConfiguration($request)
406 415
     {
407 416
         $hostMap = array(
Please login to merge, or discard this patch.
Kunstmaan/MultiDomainBundle/Tests/Router/DomainBasedLocaleRouterTest.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -91,6 +91,12 @@
 block discarded – undo
91 91
         $object->match('/en/some-uri');
92 92
     }
93 93
 
94
+    /**
95
+     * @param Request $request
96
+     * @param NodeTranslation $nodeTranslation
97
+     *
98
+     * @return \Symfony\Component\DependencyInjection\ContainerInterface
99
+     */
94 100
     private function getContainer($request, $nodeTranslation = null)
95 101
     {
96 102
         $container    = $this->getMock('Symfony\Component\DependencyInjection\ContainerInterface');
Please login to merge, or discard this patch.
src/Kunstmaan/NodeBundle/Controller/NodeAdminController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -751,7 +751,7 @@  discard block
 block discarded – undo
751 751
      *
752 752
      * @param Request $request
753 753
      *
754
-     * @return string
754
+     * @return JsonResponse
755 755
      * @throws AccessDeniedException
756 756
      */
757 757
     public function reorderAction(Request $request)
@@ -1211,7 +1211,7 @@  discard block
 block discarded – undo
1211 1211
 
1212 1212
     /**
1213 1213
      * @param $originalNode
1214
-     * @param $nodeNewPage
1214
+     * @param Node $nodeNewPage
1215 1215
      */
1216 1216
     private function updateAcl($originalNode, $nodeNewPage)
1217 1217
     {
Please login to merge, or discard this patch.