Completed
Push — master ( 3e4cf7...14abe7 )
by Jeroen
07:38 queued 12s
created
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/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.
src/Kunstmaan/AdminBundle/Helper/FormWidgets/FormWidgetInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -14,16 +14,19 @@
 block discarded – undo
14 14
 {
15 15
     /**
16 16
      * @param FormBuilderInterface $builder The form builder
17
+     * @return void
17 18
      */
18 19
     public function buildForm(FormBuilderInterface $builder);
19 20
 
20 21
     /**
21 22
      * @param Request $request
23
+     * @return void
22 24
      */
23 25
     public function bindRequest(Request $request);
24 26
 
25 27
     /**
26 28
      * @param EntityManager $em The entity manager
29
+     * @return void
27 30
      */
28 31
     public function persist(EntityManager $em);
29 32
 
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Helper/Security/OAuth/OAuthUserCreator.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -38,6 +38,7 @@
 block discarded – undo
38 38
 
39 39
     /**
40 40
      * {@inheritdoc}
41
+     * @param string $email
41 42
      */
42 43
     public function getOrCreateUser($email, $googleId)
43 44
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Helper/Security/OAuth/OAuthUserFinder.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -26,6 +26,8 @@
 block discarded – undo
26 26
 
27 27
     /**
28 28
      * {@inheritdoc}
29
+     * @param string $email
30
+     * @param integer $googleId
29 31
      */
30 32
     public function findUserByGoogleSignInData($email, $googleId)
31 33
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminListBundle/AdminList/BulkAction/SimpleBulkAction.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     private $template;
30 30
 
31 31
     /**
32
-     * @param array  $url      The url path and parameters
32
+     * @param string[]  $url      The url path and parameters
33 33
      * @param string $label    The label
34 34
      * @param string $icon     The icon
35 35
      * @param string $template The template
Please login to merge, or discard this patch.