Completed
Push — master ( ef0340...cb24d1 )
by Sam
10:24
created
ORM/ManyManyThroughQueryManipulator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
 	}
66 66
 
67 67
 	/**
68
-	 * @param mixed $joinClass
68
+	 * @param string $joinClass
69 69
 	 * @return $this
70 70
 	 */
71 71
 	public function setJoinClass($joinClass)
Please login to merge, or discard this patch.
ORM/RelationList.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 	/**
15 15
 	 * Any number of foreign keys to apply to this list
16 16
 	 *
17
-	 * @return string|array|null
17
+	 * @return string|null
18 18
 	 */
19 19
 	public function getForeignID() {
20 20
 		return $this->dataQuery->getQueryParam('Foreign.ID');
Please login to merge, or discard this patch.
ORM/UnsavedRelationList.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 	/**
51 51
 	 * Create a new UnsavedRelationList
52 52
 	 *
53
-	 * @param array $baseClass
53
+	 * @param string $baseClass
54 54
 	 * @param string $relationName
55 55
 	 * @param string $dataClass The DataObject class used in the relation
56 56
 	 */
Please login to merge, or discard this patch.
Core/ClassInfo.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -276,6 +276,9 @@
 block discarded – undo
276 276
 
277 277
 	private static $method_from_cache = array();
278 278
 
279
+	/**
280
+	 * @param string $method
281
+	 */
279 282
 	public static function has_method_from($class, $method, $compclass) {
280 283
 		$lClass = strtolower($class);
281 284
 		$lMethod = strtolower($method);
Please login to merge, or discard this patch.
Dev/BulkLoader_Result.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -132,8 +132,8 @@  discard block
 block discarded – undo
132 132
 	}
133 133
 
134 134
 	/**
135
-	 * @param $obj DataObject
136
-	 * @param $message string
135
+	 * @param DataObject $obj DataObject
136
+	 * @param string $message string
137 137
 	 */
138 138
 	public function addCreated($obj, $message = null)
139 139
 	{
@@ -146,8 +146,8 @@  discard block
 block discarded – undo
146 146
 	}
147 147
 
148 148
 	/**
149
-	 * @param $obj DataObject
150
-	 * @param $message string
149
+	 * @param DataObject $obj DataObject
150
+	 * @param string $message string
151 151
 	 */
152 152
 	public function addUpdated($obj, $message = null)
153 153
 	{
@@ -160,8 +160,8 @@  discard block
 block discarded – undo
160 160
 	}
161 161
 
162 162
 	/**
163
-	 * @param $obj DataObject
164
-	 * @param $message string
163
+	 * @param DataObject|null $obj DataObject
164
+	 * @param string $message string
165 165
 	 */
166 166
 	public function addDeleted($obj, $message = null)
167 167
 	{
Please login to merge, or discard this patch.