Completed
Pull Request — master (#2538)
by Ruud
06:59
created
src/Kunstmaan/TranslatorBundle/Service/Translator/Translator.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -139,6 +139,10 @@
 block discarded – undo
139 139
 
140 140
     /**
141 141
      * @deprecated This method is deprecated since KunstmaanTranslatorBundle version 5.1 and will be removed in KunstmaanTranslatorBundle version 6.0
142
+     * @param string $id
143
+     * @param string $domain
144
+     * @param string|null $locale
145
+     * @param string $trans
142 146
      */
143 147
     public function profileTranslation($id, $parameters, $domain, $locale, $trans)
144 148
     {
Please login to merge, or discard this patch.
src/Kunstmaan/NodeBundle/Helper/NodeHelper.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -477,7 +477,7 @@  discard block
 block discarded – undo
477 477
     }
478 478
     
479 479
     /**
480
-     * @return mixed|null
480
+     * @return User|null
481 481
      */
482 482
     protected function getUser()
483 483
     {
@@ -493,7 +493,7 @@  discard block
 block discarded – undo
493 493
     }
494 494
 
495 495
     /**
496
-     * @return mixed
496
+     * @return User
497 497
      */
498 498
     protected function getAdminUser()
499 499
     {
Please login to merge, or discard this patch.
src/Kunstmaan/MediaBundle/Utils/SymfonyVersion.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@  discard block
 block discarded – undo
18 18
     }
19 19
 
20 20
     /**
21
+     * @param integer $major
22
+     * @param integer $minor
23
+     * @param integer $patch
21 24
      * @return bool
22 25
      */
23 26
     public static function isKernelLessThan($major, $minor = null, $patch = null)
@@ -26,6 +29,7 @@  discard block
 block discarded – undo
26 29
     }
27 30
 
28 31
     /**
32
+     * @param string $operator
29 33
      * @return bool
30 34
      */
31 35
     private static function kernelVersionCompare($operator, $major, $minor = null, $patch = null)
Please login to merge, or discard this patch.
src/Kunstmaan/NodeBundle/EventListener/RenderContextListener.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@
 block discarded – undo
22 22
     protected $em;
23 23
 
24 24
     /**
25
-     * @param EngineInterface        $templating
26 25
      * @param EntityManagerInterface $em
27 26
      */
28 27
     public function __construct(/* EngineInterface|EntityManagerInterface */ $em, EntityManagerInterface $emOld = null)
Please login to merge, or discard this patch.
src/Kunstmaan/MediaBundle/Command/CreatePdfPreviewCommand.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,6 @@
 block discarded – undo
39 39
 
40 40
     /**
41 41
      * @param EntityManagerInterface|null $em
42
-     * @param PdfTransformer|null         $mediaManager
43 42
      */
44 43
     public function __construct(/* EntityManagerInterface */ $em = null, /* PdfTransformer */ $pdfTransformer = null, $webRoot = null, $enablePdfPreview = null)
45 44
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/EventListener/ConsoleExceptionSubscriber.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,8 +49,8 @@
 block discarded – undo
49 49
     }
50 50
 
51 51
     /**
52
-     * @param $command
53
-     * @param $error
52
+     * @param \Symfony\Component\Console\Command\Command $command
53
+     * @param \Throwable $error
54 54
      */
55 55
     private function logCommandError($command, $error)
56 56
     {
Please login to merge, or discard this patch.
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.
src/Kunstmaan/AdminBundle/Controller/ExceptionController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -12,6 +12,9 @@
 block discarded – undo
12 12
 
13 13
 class ExceptionController extends AdminListController
14 14
 {
15
+    /**
16
+     * @return \Kunstmaan\AdminListBundle\AdminList\Configurator\AbstractAdminListConfigurator
17
+     */
15 18
     private function getAdminListConfigurator()
16 19
     {
17 20
         if (!isset($this->configurator)) {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Form/UserType.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,9 +27,9 @@
 block discarded – undo
27 27
     /**
28 28
      * Setter to check if we can display all form fields
29 29
      *
30
-     * @param $canEditAllFields
30
+     * @param boolean $canEditAllFields
31 31
      *
32
-     * @return bool
32
+     * @return boolean|null
33 33
      */
34 34
     public function setCanEditAllFields($canEditAllFields)
35 35
     {
Please login to merge, or discard this patch.