@@ -27,9 +27,9 @@ |
||
| 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 | { |
@@ -38,6 +38,7 @@ |
||
| 38 | 38 | |
| 39 | 39 | /** |
| 40 | 40 | * {@inheritdoc} |
| 41 | + * @param string $email |
|
| 41 | 42 | */ |
| 42 | 43 | public function getOrCreateUser($email, $googleId) |
| 43 | 44 | { |
@@ -26,6 +26,8 @@ |
||
| 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 | { |
@@ -29,7 +29,7 @@ |
||
| 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 |
@@ -14,7 +14,7 @@ |
||
| 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 | */ |
@@ -11,6 +11,9 @@ |
||
| 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); |
@@ -49,7 +49,7 @@ discard block |
||
| 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 |
||
| 88 | 88 | } |
| 89 | 89 | |
| 90 | 90 | /** |
| 91 | - * @return array |
|
| 91 | + * @return AbstractArticlePagePagePartAdminConfigurator[] |
|
| 92 | 92 | */ |
| 93 | 93 | public function getPagePartAdminConfigurations() |
| 94 | 94 | { |
@@ -25,8 +25,8 @@ discard block |
||
| 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 |
||
| 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) |
@@ -75,7 +75,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | { |