Completed
Push — master ( 830752...d2bb2e )
by Kristof
55:04 queued 37:30
created
src/Kunstmaan/AdminListBundle/Tests/unit/Model/ConcreteConfigurator.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     }
25 25
 
26 26
     /**
27
-     * @return mixed
27
+     * @return boolean
28 28
      */
29 29
     public function buildFields()
30 30
     {
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
     }
79 79
 
80 80
     /**
81
-     * @return Pagerfanta
81
+     * @return string
82 82
      */
83 83
     public function getPagerfanta()
84 84
     {
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     }
87 87
 
88 88
     /**
89
-     * @return mixed
89
+     * @return ArrayIterator
90 90
      */
91 91
     public function getIterator()
92 92
     {
Please login to merge, or discard this patch.
AdminList/Configurator/AbstractDoctrineORMAdminListConfigurator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     /**
60 60
      * Return the url to edit the given $item
61 61
      *
62
-     * @param object $item
62
+     * @param \Kunstmaan\LeadGenerationBundle\Tests\unit\Entity\Popup\Popup $item
63 63
      *
64 64
      * @return array
65 65
      */
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     /**
78 78
      * Get the delete url for the given $item
79 79
      *
80
-     * @param object $item
80
+     * @param \Kunstmaan\LeadGenerationBundle\Tests\unit\Entity\Popup\Popup $item
81 81
      *
82 82
      * @return array
83 83
      */
Please login to merge, or discard this patch.
Kunstmaan/MultiDomainBundle/Tests/unit/Helper/DomainConfigurationTest.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -381,6 +381,9 @@  discard block
 block discarded – undo
381 381
         return $request;
382 382
     }
383 383
 
384
+    /**
385
+     * @param string $uri
386
+     */
384 387
     private function getRequestWithOverride($uri)
385 388
     {
386 389
         $session = new Session(new MockArraySessionStorage());
@@ -394,6 +397,9 @@  discard block
 block discarded – undo
394 397
         return $request;
395 398
     }
396 399
 
400
+    /**
401
+     * @param Request $request
402
+     */
397 403
     private function getDomainConfiguration($request)
398 404
     {
399 405
         $hostMap = array(
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.
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.