@@ -13,6 +13,7 @@ discard block |
||
13 | 13 | * Bind current request. |
14 | 14 | * |
15 | 15 | * @param Request $request |
16 | + * @return void |
|
16 | 17 | */ |
17 | 18 | public function bindRequest(Request $request); |
18 | 19 | |
@@ -22,7 +23,7 @@ discard block |
||
22 | 23 | public function getLimit(); |
23 | 24 | |
24 | 25 | /** |
25 | - * @return array |
|
26 | + * @return integer[] |
|
26 | 27 | */ |
27 | 28 | public function getLimitOptions(); |
28 | 29 | } |
@@ -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 | */ |
@@ -26,6 +26,10 @@ discard block |
||
26 | 26 | */ |
27 | 27 | private $lockEnabled; |
28 | 28 | |
29 | + /** |
|
30 | + * @param integer $threshold |
|
31 | + * @param boolean $lockEnabled |
|
32 | + */ |
|
29 | 33 | public function __construct(ObjectManager $em, $threshold, $lockEnabled) |
30 | 34 | { |
31 | 35 | $this->setObjectManager($em); |
@@ -146,7 +150,7 @@ discard block |
||
146 | 150 | * @param LockableEntity $entity |
147 | 151 | * @param User $userToExclude |
148 | 152 | * |
149 | - * @return EntityVersionLock[] |
|
153 | + * @return \Kunstmaan\AdminListBundle\Repository\EntityVersionLock[] |
|
150 | 154 | */ |
151 | 155 | protected function getEntityVersionLocksByLockableEntity(LockableEntity $entity, User $userToExclude = null) |
152 | 156 | { |
@@ -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 | { |
@@ -136,7 +136,7 @@ |
||
136 | 136 | /** |
137 | 137 | * Get visits |
138 | 138 | * |
139 | - * @return int |
|
139 | + * @return string |
|
140 | 140 | */ |
141 | 141 | public function getVisits() |
142 | 142 | { |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | * |
158 | 158 | * @param int $config |
159 | 159 | * |
160 | - * @return AnalyticsTopReferrals |
|
160 | + * @return AnalyticsOverview |
|
161 | 161 | */ |
162 | 162 | public function setConfig($config) |
163 | 163 | { |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | * |
182 | 182 | * @param int $segment |
183 | 183 | * |
184 | - * @return AnalyticsTopReferrals |
|
184 | + * @return AnalyticsOverview |
|
185 | 185 | */ |
186 | 186 | public function setSegment($segment) |
187 | 187 | { |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | /** |
194 | 194 | * Set goals |
195 | 195 | * |
196 | - * @param array $goals |
|
196 | + * @param AnalyticsGoal[] $goals |
|
197 | 197 | * |
198 | 198 | * @return $this |
199 | 199 | */ |
@@ -506,7 +506,7 @@ discard block |
||
506 | 506 | /** |
507 | 507 | * Get useYear |
508 | 508 | * |
509 | - * @return int |
|
509 | + * @return boolean |
|
510 | 510 | */ |
511 | 511 | public function getUseYear() |
512 | 512 | { |
@@ -100,7 +100,7 @@ |
||
100 | 100 | * |
101 | 101 | * @param int $config |
102 | 102 | * |
103 | - * @return AnalyticsTopReferrals |
|
103 | + * @return AnalyticsSegment |
|
104 | 104 | */ |
105 | 105 | public function setConfig($config) |
106 | 106 | { |