Completed
Push — master ( 3e4cf7...14abe7 )
by Jeroen
07:38 queued 12s
created
Kunstmaan/NodeBundle/Form/EventListener/URLChooserLinkTypeSubscriber.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 use Symfony\Component\Form\FormEvent;
10 10
 use Symfony\Component\Form\FormEvents;
11 11
 use Symfony\Component\Validator\Constraints\Email;
12
-use Symfony\Component\Validator\Constraints\Url;
13 12
 
14 13
 /**
15 14
  * Class URLChooserLinkTypeSubscriber
Please login to merge, or discard this patch.
SeoBundle/Tests/unit/DependencyInjection/KunstmaanSeoExtensionTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     }
25 25
 
26 26
     /**
27
-     * @return ExtensionInterface[]
27
+     * @return KunstmaanSeoExtension[]
28 28
      */
29 29
     protected function getContainerExtensions()
30 30
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/EventListener/AdminLocaleListener.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     /**
61 61
      * onKernelRequest
62 62
      *
63
-     * @param GetResponseEvent|ResponseEvent $event
63
+     * @param \PHPUnit\Framework\MockObject\MockObject $event
64 64
      */
65 65
     public function onKernelRequest($event)
66 66
     {
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 
85 85
     /**
86 86
      * @param TokenInterface $token
87
-     * @param                $providerKey
87
+     * @param                string $providerKey
88 88
      *
89 89
      * @return bool
90 90
      */
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/EventListener/PasswordCheckListener.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
     }
68 68
 
69 69
     /**
70
-     * @param GetResponseEvent|ResponseEvent $event
70
+     * @param \PHPUnit\Framework\MockObject\MockObject $event
71 71
      **/
72 72
     public function onKernelRequest($event)
73 73
     {
Please login to merge, or discard this patch.
MultiDomainBundle/Tests/unit/EventListener/HostOverrideListenerTest.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -138,6 +138,9 @@  discard block
 block discarded – undo
138 138
         $object->onKernelResponse($event);
139 139
     }
140 140
 
141
+    /**
142
+     * @param \PHPUnit\Framework\MockObject\MockObject $flashBag
143
+     */
141 144
     private function getHostOverrideListener($flashBag)
142 145
     {
143 146
         $session = $this->getMockBuilder('Symfony\Component\HttpFoundation\Session\Session')
@@ -172,6 +175,9 @@  discard block
 block discarded – undo
172 175
         return $listener;
173 176
     }
174 177
 
178
+    /**
179
+     * @param \PHPUnit\Framework\MockObject\MockObject $response
180
+     */
175 181
     private function getFilterResponseEvent($request, $response, $requestType = HttpKernelInterface::MASTER_REQUEST)
176 182
     {
177 183
         $event = $this->getMockBuilder('Symfony\Component\HttpKernel\Event\FilterResponseEvent')
Please login to merge, or discard this patch.
Kunstmaan/MultiDomainBundle/Tests/unit/Helper/DomainConfigurationTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -338,6 +338,9 @@
 block discarded – undo
338 338
         return Request::create('http://single-alias.tld/');
339 339
     }
340 340
 
341
+    /**
342
+     * @param string $uri
343
+     */
341 344
     private function getRequestWithOverride($uri)
342 345
     {
343 346
         $session = new Session(new MockArraySessionStorage());
Please login to merge, or discard this patch.
MultiDomainBundle/Tests/unit/Router/DomainBasedLocaleRouterTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -215,6 +215,9 @@
 block discarded – undo
215 215
         return $repository;
216 216
     }
217 217
 
218
+    /**
219
+     * @param NodeTranslation $nodeTranslation
220
+     */
218 221
     private function getDomainBasedLocaleRouter($request, $nodeTranslation = null)
219 222
     {
220 223
         return new DomainBasedLocaleRouter($this->getDomainConfiguration(), $this->getRequestStack($request), $this->getEntityManager($nodeTranslation));
Please login to merge, or discard this patch.
AdminListBundle/AdminList/Configurator/ExportListConfiguratorInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -8,13 +8,25 @@
 block discarded – undo
8 8
 
9 9
     public function addExportField($name, $header);
10 10
 
11
+    /**
12
+     * @return void
13
+     */
11 14
     public function buildIterator();
12 15
 
13 16
     public function getIterator();
14 17
 
18
+    /**
19
+     * @return void
20
+     */
15 21
     public function buildFilters();
16 22
 
23
+    /**
24
+     * @return void
25
+     */
17 26
     public function buildExportFields();
18 27
 
28
+    /**
29
+     * @param string $columnName
30
+     */
19 31
     public function getStringValue($item, $columnName);
20 32
 }
Please login to merge, or discard this patch.
src/Kunstmaan/TranslatorBundle/Controller/TranslatorController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -234,7 +234,7 @@
 block discarded – undo
234 234
      *
235 235
      * @Route("/export.{_format}", requirements={"_format" = "csv|ods|xlsx"}, name="KunstmaanTranslatorBundle_settings_translations_export", methods={"GET", "POST"})
236 236
      *
237
-     * @return array
237
+     * @return Response
238 238
      */
239 239
     public function exportAction(Request $request, $_format)
240 240
     {
Please login to merge, or discard this patch.