Completed
Push — 7LTS_compatible ( a6fb07...94e008 )
by Tomas Norre
07:04
created
Classes/Services/VisibilityService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -274,7 +274,7 @@
 block discarded – undo
274 274
 	 * This method can be used to retrieve an informal description for the visibility of an element
275 275
 	 *
276 276
 	 * @param tx_languagevisibility_language $language
277
-	 * @param tx_languagevisibility_element $element
277
+	 * @param \AOE\Languagevisibility\Element $element
278 278
 	 * @return string
279 279
 	 */
280 280
 	public function getVisibilityDescription(Language $language, Element $element) {
Please login to merge, or discard this patch.
Tests/Functional/Hooks/T3libPageTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -129,6 +129,9 @@
 block discarded – undo
129 129
 		return array_combine(array_map(function($row) { return $row[3]; }, $testDataSet), $testDataSet);
130 130
 	}
131 131
 
132
+	/**
133
+	 * @param integer $uid
134
+	 */
132 135
 	protected function getContentElementRow($uid) {
133 136
 		return $GLOBALS['TYPO3_DB']->exec_SELECTgetSingleRow(
134 137
 			'*',
Please login to merge, or discard this patch.
Classes/Services/BeServices.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
 	/**
383 383
 	 * returns array with the visibility options that are allowed for the current user.
384 384
 	 *
385
-	 * @param tx_languagevisibility_language $language
385
+	 * @param Language $language
386 386
 	 * @param bool $isOverlay
387 387
 	 * @param null $element
388 388
 	 * @return array
@@ -465,7 +465,7 @@  discard block
 block discarded – undo
465 465
 	}
466 466
 
467 467
 	/**
468
-	 * @return mixed
468
+	 * @return integer
469 469
 	 */
470 470
 	protected static function _guessCurrentPid() {
471 471
 		return \TYPO3\CMS\Core\Utility\GeneralUtility::_GP('id');
Please login to merge, or discard this patch.
Classes/FieldVisibility.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
 	}
264 264
 
265 265
 	/**
266
-	 * @param $key
266
+	 * @param string $key
267 267
 	 * @return mixed
268 268
 	 */
269 269
 	public function getLLL($key) {
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
 	 *
276 276
 	 * @param boolean positive or negative state
277 277
 	 * @param string $title
278
-	 * @return html tag to include the state image
278
+	 * @return string tag to include the state image
279 279
 	 */
280 280
 	protected function _getStatusImage($stat, $title = '') {
281 281
 		if ($stat) {
Please login to merge, or discard this patch.