Completed
Pull Request — master (#2082)
by Sander
14:35
created
src/Kunstmaan/SeoBundle/Twig/SeoTwigExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     /**
18 18
      * Returns a list of functions to add to the existing list.
19 19
      *
20
-     * @return array An array of functions
20
+     * @return \Twig_SimpleFunction[] An array of functions
21 21
      */
22 22
     public function getFunctions()
23 23
     {
Please login to merge, or discard this patch.
src/Kunstmaan/SitemapBundle/Twig/SitemapTwigExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     /**
18 18
      * Returns a list of functions to add to the existing list.
19 19
      *
20
-     * @return array An array of functions
20
+     * @return \Twig_SimpleFunction[] An array of functions
21 21
      */
22 22
     public function getFunctions()
23 23
     {
Please login to merge, or discard this patch.
src/Kunstmaan/VotingBundle/Services/RepositoryResolver.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     
23 23
     /**
24 24
     * Constructor
25
-    * @param Object $em entity manager
25
+    * @param EntityManager $em entity manager
26 26
     */
27 27
     public function __construct(EntityManager $em)
28 28
     {
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     * Return repository for event
34 34
     * @param Event $event event
35 35
     *
36
-    * @return Repository
36
+    * @return \Doctrine\Common\Persistence\ObjectRepository|null
37 37
     */
38 38
     public function getRepositoryForEvent($event)
39 39
     {
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     * Return a repository By name
67 67
     * @param string $name name
68 68
     *
69
-    * @return Repository
69
+    * @return \Doctrine\Common\Persistence\ObjectRepository
70 70
     */
71 71
     protected function getRepository($name)
72 72
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Entity/BaseUser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@
 block discarded – undo
161 161
     }
162 162
 
163 163
     /**
164
-     * @param mixed $googleId
164
+     * @param string $googleId
165 165
      */
166 166
     public function setGoogleId($googleId)
167 167
     {
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,8 +27,8 @@
 block discarded – undo
27 27
     /**
28 28
      * Setter to check if we can display all form fields
29 29
      *
30
-     * @param $canEditAllFields
31
-     * @return bool
30
+     * @param boolean $canEditAllFields
31
+     * @return boolean|null
32 32
      */
33 33
     public function setCanEditAllFields($canEditAllFields)
34 34
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Helper/Menu/SettingsMenuAdaptor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     /**
28 28
      * Constructor
29 29
      *
30
-     * @param AuthorizationCheckerInterface $container
30
+     * @param boolean $isEnabledVersionChecker
31 31
      */
32 32
     public function __construct(AuthorizationCheckerInterface $authorizationChecker, $isEnabledVersionChecker)
33 33
     {
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
@@ -36,6 +36,7 @@
 block discarded – undo
36 36
 
37 37
     /**
38 38
      * {@inheritDoc}
39
+     * @param string $email
39 40
      */
40 41
     public function getOrCreateUser($email, $googleId)
41 42
     {
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
@@ -27,6 +27,8 @@
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * {@inheritDoc}
30
+     * @param string $email
31
+     * @param integer $googleId
30 32
      */
31 33
     public function findUserByGoogleSignInData($email, $googleId)
32 34
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Tests/AbstractPrependableExtensionTestCase.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
      * Call this method from within your test after you have (optionally) modified the ContainerBuilder for this test
12 12
      * ($this->container).
13 13
      *
14
-     * @param array $specificConfiguration
15 14
      */
16 15
     protected function load(array $configurationValues = array())
17 16
     {
Please login to merge, or discard this patch.