Completed
Push — 5.6 ( 679697...f4d50c )
by Jeroen
16:35 queued 10:49
created
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/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.
src/Kunstmaan/AdminListBundle/Exception/ExportException.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      * Construct Exception.
15 15
      *
16 16
      * @param string     $message  Message
17
-     * @param mixed      $data
17
+     * @param string      $data
18 18
      * @param int        $code
19 19
      * @param \Throwable $previous
20 20
      */
Please login to merge, or discard this patch.
AdminListBundle/Tests/Model/TestLockableEntityInterfaceImplementation.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -11,6 +11,9 @@
 block discarded – undo
11 11
 {
12 12
     protected $id;
13 13
 
14
+    /**
15
+     * @param string $id
16
+     */
14 17
     public function __construct($id)
15 18
     {
16 19
         $this->setId($id);
Please login to merge, or discard this patch.
src/Kunstmaan/ArticleBundle/Entity/AbstractArticlePage.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     /**
50 50
      * Set the summary of this article
51 51
      *
52
-     * @param $summary
52
+     * @param string $summary
53 53
      */
54 54
     public function setSummary($summary)
55 55
     {
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
     }
89 89
 
90 90
     /**
91
-     * @return array
91
+     * @return AbstractArticlePagePagePartAdminConfigurator[]
92 92
      */
93 93
     public function getPagePartAdminConfigurations()
94 94
     {
Please login to merge, or discard this patch.
DashboardBundle/Command/Helper/Analytics/AbstractAnalyticsCommandHelper.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,8 +25,8 @@  discard block
 block discarded – undo
25 25
      *
26 26
      * @param $configHelper
27 27
      * @param $queryHelper
28
-     * @param $output
29
-     * @param $em
28
+     * @param OutputInterface $output
29
+     * @param \Doctrine\ORM\EntityManagerInterface $em
30 30
      */
31 31
     public function __construct($configHelper, $queryHelper, $output, $em)
32 32
     {
@@ -80,6 +80,7 @@  discard block
 block discarded – undo
80 80
     /**
81 81
      * Executes the query
82 82
      *
83
+     * @param string $metrics
83 84
      * @return array the resultset
84 85
      */
85 86
     protected function executeQuery(AnalyticsOverview $overview, $metrics)
Please login to merge, or discard this patch.
src/Kunstmaan/DashboardBundle/Entity/AnalyticsConfig.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
      *
76 76
      * @param array $overviews
77 77
      *
78
-     * @return AnalyticsDailyOverviews
78
+     * @return AnalyticsConfig
79 79
      */
80 80
     public function setOverviews($overviews)
81 81
     {
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
      *
100 100
      * @param array $segments
101 101
      *
102
-     * @return AnalyticsDailysegments
102
+     * @return AnalyticsConfig
103 103
      */
104 104
     public function setSegments($segments)
105 105
     {
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
      *
134 134
      * @param string $name
135 135
      *
136
-     * @return Analyticsname
136
+     * @return AnalyticsConfig
137 137
      */
138 138
     public function setName($name)
139 139
     {
Please login to merge, or discard this patch.