Completed
Pull Request — master (#1461)
by Rico
07:40
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.
app/Controller/AdminController.php 1 patch
Doc Comments   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -834,7 +834,7 @@  discard block
 block discarded – undo
834 834
 	 * @param string $component
835 835
 	 * @param string $route
836 836
 	 * @param string $component_title
837
-	 * @param string $page_title
837
+	 * @param string $title
838 838
 	 *
839 839
 	 * @return Response
840 840
 	 */
@@ -919,7 +919,7 @@  discard block
 block discarded – undo
919 919
 	/**
920 920
 	 * Count the number of pending changes in each tree.
921 921
 	 *
922
-	 * @return array
922
+	 * @return string[]
923 923
 	 */
924 924
 	private function totalChanges() {
925 925
 		return Database::prepare(
@@ -933,7 +933,7 @@  discard block
 block discarded – undo
933 933
 	/**
934 934
 	 * Count the number of families in each tree.
935 935
 	 *
936
-	 * @return array
936
+	 * @return string[]
937 937
 	 */
938 938
 	private function totalFamilies() {
939 939
 		return Database::prepare(
@@ -947,7 +947,7 @@  discard block
 block discarded – undo
947 947
 	/**
948 948
 	 * Count the number of individuals in each tree.
949 949
 	 *
950
-	 * @return array
950
+	 * @return string[]
951 951
 	 */
952 952
 	private function totalIndividuals() {
953 953
 		return Database::prepare(
@@ -961,7 +961,7 @@  discard block
 block discarded – undo
961 961
 	/**
962 962
 	 * Count the number of media objects in each tree.
963 963
 	 *
964
-	 * @return array
964
+	 * @return string[]
965 965
 	 */
966 966
 	private function totalMediaObjects() {
967 967
 		return Database::prepare(
@@ -975,7 +975,7 @@  discard block
 block discarded – undo
975 975
 	/**
976 976
 	 * Count the number of notes in each tree.
977 977
 	 *
978
-	 * @return array
978
+	 * @return string[]
979 979
 	 */
980 980
 	private function totalNotes() {
981 981
 		return Database::prepare(
@@ -990,7 +990,7 @@  discard block
 block discarded – undo
990 990
 	/**
991 991
 	 * Count the number of repositorie in each tree.
992 992
 	 *
993
-	 * @return array
993
+	 * @return string[]
994 994
 	 */
995 995
 	private function totalRepositories() {
996 996
 		return Database::prepare(
@@ -1004,7 +1004,7 @@  discard block
 block discarded – undo
1004 1004
 	/**
1005 1005
 	 * Count the number of sources in each tree.
1006 1006
 	 *
1007
-	 * @return array
1007
+	 * @return string[]
1008 1008
 	 */
1009 1009
 	private function totalSources() {
1010 1010
 		return Database::prepare(
Please login to merge, or discard this patch.