Completed
Pull Request — master (#6233)
by David
09:20
created
ORM/Versioning/ChangeSetItem.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
 	 * Find version of this object in the given stage
148 148
 	 *
149 149
 	 * @param string $stage
150
-	 * @return DataObject|Versioned
150
+	 * @return DataObject|null
151 151
 	 * @throws UnexpectedDataException
152 152
 	 */
153 153
 	protected function getObjectInStage($stage) {
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
 
161 161
 	/**
162 162
 	 * Find latest version of this object
163
-	 * @return DataObject|Versioned
163
+	 * @return DataObject|null
164 164
 	 * @throws UnexpectedDataException
165 165
 	 */
166 166
 	protected function getObjectLatestVersion() {
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.