Completed
Push — 6.0 ( b300c2...83be5d )
by Ruud
58:05 queued 42:53
created
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
 }
29 30
\ No newline at end of file
Please login to merge, or discard this patch.
src/Kunstmaan/AdminListBundle/Traits/ChangeableLimitTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
         return $this->limit;
79 79
     }
80 80
 
81
-    /** @return array */
81
+    /** @return integer[] */
82 82
     public function getLimitOptions()
83 83
     {
84 84
         return [
Please login to merge, or discard this patch.
TranslatorBundle/DependencyInjection/KunstmaanTranslatorExtension.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -50,6 +50,9 @@
 block discarded – undo
50 50
         $container->getDefinition('kunstmaan_translator.datacollector')->setDecoratedService('translator');
51 51
     }
52 52
 
53
+    /**
54
+     * @param ContainerBuilder $container
55
+     */
53 56
     public function setTranslationConfiguration($config, $container)
54 57
     {
55 58
         $container->setAlias('translator', 'kunstmaan_translator.service.translator.translator')->setPublic(true);
Please login to merge, or discard this patch.
src/Kunstmaan/MediaBundle/Controller/MediaController.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -287,6 +287,10 @@
 block discarded – undo
287 287
         return $response;
288 288
     }
289 289
 
290
+    /**
291
+     * @param string $code
292
+     * @param string $message
293
+     */
290 294
     private function returnJsonError($code, $message)
291 295
     {
292 296
 
Please login to merge, or discard this patch.