Completed
Pull Request — master (#2737)
by
unknown
08:55
created
src/Kunstmaan/SitemapBundle/Controller/SitemapController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
     }
70 70
 
71 71
     /**
72
-     * @param object $event
72
+     * @param PreSitemapRenderEvent $event
73 73
      * @param string $eventName
74 74
      *
75 75
      * @return object
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Entity/BaseUser.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -221,6 +221,9 @@  discard block
 block discarded – undo
221 221
         return $this->passwordChanged;
222 222
     }
223 223
 
224
+    /**
225
+     * @param boolean $passwordChanged
226
+     */
224 227
     public function setPasswordChanged($passwordChanged)
225 228
     {
226 229
         $this->passwordChanged = $passwordChanged;
@@ -237,7 +240,7 @@  discard block
 block discarded – undo
237 240
     }
238 241
 
239 242
     /**
240
-     * @param mixed $googleId
243
+     * @param string $googleId
241 244
      */
242 245
     public function setGoogleId($googleId)
243 246
     {
@@ -330,7 +333,7 @@  discard block
 block discarded – undo
330 333
     }
331 334
 
332 335
     /**
333
-     * @return array
336
+     * @return string[]
334 337
      */
335 338
     public function getRoles()
336 339
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Service/PasswordMailerInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -6,5 +6,8 @@
 block discarded – undo
6 6
 
7 7
 interface PasswordMailerInterface
8 8
 {
9
+    /**
10
+     * @return void
11
+     */
9 12
     public function sendPasswordForgotMail(UserInterface $user, string $locale);
10 13
 }
Please login to merge, or discard this patch.
src/Kunstmaan/NodeSearchBundle/Configuration/NodePagesConfiguration.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -504,7 +504,7 @@  discard block
 block discarded – undo
504 504
     /**
505 505
      * Add type to the index document
506 506
      *
507
-     * @param object $page
507
+     * @param HasNodeInterface $page
508 508
      * @param array  $doc
509 509
      *
510 510
      * @return array
@@ -731,7 +731,7 @@  discard block
 block discarded – undo
731 731
      *
732 732
      * @deprecated This method is deprecated since KunstmaanNodeSearchBundle 5.7 and will be removed in KunstmaanNodeSearchBundle 6.0. Use the "removeHtml" method of the "Kunstmaan\NodeSearchBundle\Services\SearchViewRenderer" instead.
733 733
      *
734
-     * @param $text
734
+     * @param string $text
735 735
      *
736 736
      * @return string
737 737
      */
@@ -747,7 +747,7 @@  discard block
 block discarded – undo
747 747
     /**
748 748
      * Fetch ACL permissions for the specified entity
749 749
      *
750
-     * @param object $object
750
+     * @param Node $object
751 751
      *
752 752
      * @return array
753 753
      */
@@ -783,7 +783,7 @@  discard block
 block discarded – undo
783 783
     /**
784 784
      * @param $publicNodeVersion
785 785
      *
786
-     * @return mixed
786
+     * @return HasNodeInterface
787 787
      */
788 788
     private function getNodeRefPage(NodeVersion $publicNodeVersion)
789 789
     {
@@ -797,7 +797,7 @@  discard block
 block discarded – undo
797 797
     }
798 798
 
799 799
     /**
800
-     * @param object $event
800
+     * @param IndexNodeEvent $event
801 801
      * @param string $eventName
802 802
      *
803 803
      * @return object
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Helper/Menu/MenuAdaptorInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -17,6 +17,7 @@
 block discarded – undo
17 17
      * @param MenuItem[]    $children The current children
18 18
      * @param MenuItem|null $parent   The parent Menu item
19 19
      * @param Request|null  $request  The Request
20
+     * @return void
20 21
      */
21 22
     public function adaptChildren(MenuBuilder $menu, array &$children, MenuItem $parent = null, Request $request = null);
22 23
 }
Please login to merge, or discard this patch.