Completed
Pull Request — master (#1464)
by Rico
07:53
created
app/Statement.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
 	 *
107 107
 	 * @param int $fetch_style
108 108
 	 *
109
-	 * @return stdClass|array|false
109
+	 * @return Tree
110 110
 	 */
111 111
 	public function fetch($fetch_style = PDO::FETCH_OBJ) {
112 112
 		if (!$this->executed) {
Please login to merge, or discard this patch.
app/View.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 	/**
33 33
 	 * Createa view from a template name and optional data.
34 34
 	 *
35
-	 * @param       $name
35
+	 * @param       string $name
36 36
 	 * @param array $data
37 37
 	 */
38 38
 	public function __construct($name, $data = []) {
Please login to merge, or discard this patch.
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.