diff --git a/typo3/sysext/backend/Classes/Form/FormEngine.php b/typo3/sysext/backend/Classes/Form/FormEngine.php index fa27cd15a196f242fbafc79545f28e665032cdf3..3da57ae0b5a4ad54b6b2c4470a8bc14350a29151 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 1a32434ba191446e178bd9d4f13169823837dd8f..81e9c580cf467a358410372bf9586f349709d435 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 6f606258d6419b4eedb1cd8b74d6da9bf4df5848..4a150b56a4d0e3ced075fb0e98ce0ea947d2fa0b 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 2bbbdea1197e1b7df72aaac33a58aba79e8655cb..d34e8735a1280933c798f7edcdb3000918b29d4c 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 1ce9aeaf658fec8d19a873e7af21763b99a95b7d..5f75ef80d04cc841880350313e2fe43cce9728e4 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 70f6be35b83fe2c8d4e7bca81f3277f141ea59ef..b4437d1bd1130c826088ad6bf56648a0b92aa827 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 */