Completed
Push — develop ( 0fd37b...5cb4f0 )
by Greg
13:35
created
app/CommonMark/CensusTableExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
 	/**
38 38
 	 * Returns a list of block parsers to add to the existing list
39 39
 	 *
40
-	 * @return BlockParserInterface[]
40
+	 * @return CensusTableParser[]
41 41
 	 */
42 42
 	public function getBlockParsers() {
43 43
 		return [
Please login to merge, or discard this patch.
app/CommonMark/XrefExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
 	}
36 36
 
37 37
 	/**
38
-	 * @return array
38
+	 * @return XrefParser[]
39 39
 	 */
40 40
 	public function getInlineParsers() {
41 41
 		return [
Please login to merge, or discard this patch.
app/CommonMark/XrefParser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
 	/**
39 39
 	 * We are only interested in text that begins with '@'.
40 40
 	 *
41
-	 * @return array
41
+	 * @return string[]
42 42
 	 */
43 43
 	public function getCharacters() {
44 44
 		return ['@'];
Please login to merge, or discard this patch.
app/DebugBar.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
 	/**
180 180
 	 * Log an exception/throwable
181 181
 	 *
182
-	 * @param Throwable $throwable
182
+	 * @param \Exception $throwable
183 183
 	 */
184 184
 	public static function addThrowable(Throwable $throwable) {
185 185
 		if (self::$debugbar !== null) {
@@ -190,7 +190,6 @@  discard block
 block discarded – undo
190 190
 	/**
191 191
 	 * Log an exception/throwable
192 192
 	 *
193
-	 * @param Throwable $throwable
194 193
 	 */
195 194
 	public static function addView(string $view, array $data) {
196 195
 		if (self::$debugbar !== null) {
Please login to merge, or discard this patch.
app/Http/Controllers/HomePageController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -492,7 +492,7 @@
 block discarded – undo
492 492
 	 * Take a list of block names, and return block (module) objects.
493 493
 	 *
494 494
 	 * @param string[] $blocks
495
-	 * @param array    $active_blocks
495
+	 * @param ModuleBlockInterface[]    $active_blocks
496 496
 	 *
497 497
 	 * @return ModuleBlockInterface[]
498 498
 	 */
Please login to merge, or discard this patch.
app/Report/ReportPdf.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -248,7 +248,7 @@
 block discarded – undo
248 248
 	/**
249 249
 	 * Create a new image object from Media Object - ReportPdf
250 250
 	 *
251
-	 * @param MediaFile $mediafile
251
+	 * @param MediaFile $media_file
252 252
 	 * @param mixed     $x
253 253
 	 * @param mixed     $y
254 254
 	 * @param int       $w     Image width
Please login to merge, or discard this patch.
app/Theme/ThemeInterface.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,6 +69,7 @@  discard block
 block discarded – undo
69 69
 	/**
70 70
 	 * Allow themes to do things after initialization (since they cannot use
71 71
 	 * the constructor).
72
+	 * @return void
72 73
 	 */
73 74
 	public function hookAfterInit();
74 75
 
@@ -160,6 +161,7 @@  discard block
 block discarded – undo
160 161
 	 * happens in a theme file, and we need to be able to change it.
161 162
 	 *
162 163
 	 * @param Tree|null $tree The current tree (if there is one).
164
+	 * @return void
163 165
 	 */
164 166
 	public function init(Tree $tree = null);
165 167
 
@@ -184,12 +186,13 @@  discard block
 block discarded – undo
184 186
 	 *
185 187
 	 * @param string $parameter_name
186 188
 	 *
187
-	 * @return string|int|float
189
+	 * @return string
188 190
 	 */
189 191
 	public function parameter($parameter_name);
190 192
 
191 193
 	/**
192 194
 	 * Send any HTTP headers.
195
+	 * @return void
193 196
 	 */
194 197
 	public function sendHeaders();
195 198
 
Please login to merge, or discard this patch.
app/Http/Controllers/SetupController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -460,7 +460,7 @@
 block discarded – undo
460 460
 	 *
461 461
 	 * @param string  $name
462 462
 	 * @param mixed[] $data
463
-	 * @param int     $atatus
463
+	 * @param int     $status
464 464
 	 *
465 465
 	 * @return Response
466 466
 	 */
Please login to merge, or discard this patch.