From 65d8e5847588623488e62a8600be16f19fe55d18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frank=20N=C3=A4gler?= <typo3@naegler.net> Date: Sat, 30 May 2015 21:23:58 +0200 Subject: [PATCH] [CLEANUP] Make use of bool/int in @param DocComments Resolves: #67213 Releases: master Change-Id: I8ed7802f4e4e3d95ecb946231d11b46956ea4477 Reviewed-on: http://review.typo3.org/39835 Reviewed-by: Wouter Wolters <typo3@wouterwolters.nl> Tested-by: Wouter Wolters <typo3@wouterwolters.nl> --- typo3/sysext/backend/Classes/Form/FormEngine.php | 4 ++-- .../backend/Classes/Form/InlineRelatedRecordResolver.php | 4 ++-- typo3/sysext/backend/Classes/Form/InlineStackProcessor.php | 4 ++-- typo3/sysext/core/Classes/Resource/Driver/DriverInterface.php | 4 ++-- typo3/sysext/core/Classes/Resource/Driver/LocalDriver.php | 2 +- .../Tests/Unit/ContentObject/ContentObjectRendererTest.php | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/typo3/sysext/backend/Classes/Form/FormEngine.php b/typo3/sysext/backend/Classes/Form/FormEngine.php index fa27cd15a196..3da57ae0b5a4 100644 --- a/typo3/sysext/backend/Classes/Form/FormEngine.php +++ b/typo3/sysext/backend/Classes/Form/FormEngine.php @@ -923,7 +923,7 @@ class FormEngine { * Return expand / collapse state array for a given table / uid combination * * @param string $table Handled table - * @param integer $uid Handled uid + * @param int $uid Handled uid * @return array */ protected function getInlineExpandCollapseStateArrayForTableUid($table, $uid) { @@ -1031,7 +1031,7 @@ class FormEngine { * * @param array &$jsonArray Reference of the array to be used for JSON * @param array $config The configuration of the IRRE field of the parent record - * @param integer $inlineFirstPid Inline first pid + * @param int $inlineFirstPid Inline first pid * @return array Modified array * @todo: Basically, this methods shouldn't be there at all ... */ diff --git a/typo3/sysext/backend/Classes/Form/InlineRelatedRecordResolver.php b/typo3/sysext/backend/Classes/Form/InlineRelatedRecordResolver.php index 1a32434ba191..81e9c580cf46 100644 --- a/typo3/sysext/backend/Classes/Form/InlineRelatedRecordResolver.php +++ b/typo3/sysext/backend/Classes/Form/InlineRelatedRecordResolver.php @@ -39,7 +39,7 @@ class InlineRelatedRecordResolver { * @param array $row The record data array where the value(s) for the field can be found * @param array $PA An array with additional configuration options. * @param array $config (Redundant) content of $PA['fieldConf']['config'] (for convenience) - * @param integer $inlineFirstPid Inline first pid + * @param int $inlineFirstPid Inline first pid * @return array The records related to the parent item as associative array. */ public function getRelatedRecords($table, $field, $row, $PA, $config, $inlineFirstPid) { @@ -238,4 +238,4 @@ class InlineRelatedRecordResolver { return $GLOBALS['BE_USER']; } -} \ No newline at end of file +} diff --git a/typo3/sysext/backend/Classes/Form/InlineStackProcessor.php b/typo3/sysext/backend/Classes/Form/InlineStackProcessor.php index 6f606258d641..4a150b56a4d0 100644 --- a/typo3/sysext/backend/Classes/Form/InlineStackProcessor.php +++ b/typo3/sysext/backend/Classes/Form/InlineStackProcessor.php @@ -165,7 +165,7 @@ class InlineStackProcessor { /** * DOM object-id for this inline level * - * @param integer $inlineFirstPid Pid of top level inline element storage + * @param int $inlineFirstPid Pid of top level inline element storage * @return string */ public function getCurrentStructureDomObjectIdPrefix($inlineFirstPid) { @@ -295,4 +295,4 @@ class InlineStackProcessor { return $name; } -} \ No newline at end of file +} diff --git a/typo3/sysext/core/Classes/Resource/Driver/DriverInterface.php b/typo3/sysext/core/Classes/Resource/Driver/DriverInterface.php index 2bbbdea1197e..d34e8735a128 100644 --- a/typo3/sysext/core/Classes/Resource/Driver/DriverInterface.php +++ b/typo3/sysext/core/Classes/Resource/Driver/DriverInterface.php @@ -434,7 +434,7 @@ interface DriverInterface { * Returns the number of files inside the specified path * * @param string $folderIdentifier - * @param boolean $recursive + * @param bool $recursive * @param array $filenameFilterCallbacks callbacks for filtering the items * @return integer Number of files in folder */ @@ -444,7 +444,7 @@ interface DriverInterface { * Returns the number of folders inside the specified path * * @param string $folderIdentifier - * @param boolean $recursive + * @param bool $recursive * @param array $folderNameFilterCallbacks callbacks for filtering the items * @return integer Number of folders in folder */ diff --git a/typo3/sysext/core/Classes/Resource/Driver/LocalDriver.php b/typo3/sysext/core/Classes/Resource/Driver/LocalDriver.php index 1ce9aeaf658f..5f75ef80d04c 100644 --- a/typo3/sysext/core/Classes/Resource/Driver/LocalDriver.php +++ b/typo3/sysext/core/Classes/Resource/Driver/LocalDriver.php @@ -480,7 +480,7 @@ class LocalDriver extends AbstractHierarchicalFilesystemDriver { * Returns the number of folders inside the specified path * * @param string $folderIdentifier - * @param boolean $recursive + * @param bool $recursive * @param array $folderNameFilterCallbacks callbacks for filtering the items * @return integer Number of folders in folder */ diff --git a/typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php b/typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php index 70f6be35b83f..b4437d1bd113 100644 --- a/typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php +++ b/typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php @@ -1563,7 +1563,7 @@ class ContentObjectRendererTest extends \TYPO3\CMS\Core\Tests\UnitTestCase { /** * @param string|NULL $content * @param array $configuration - * @param integer $expected + * @param int $expected * @dataProvider stdWrap_strtotimeReturnsTimestampDataProvider * @test */ -- GitLab