From 5dfa45b4a2e3beabc5ec8a6f7632049f827e751f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frank=20N=C3=A4gler?= <typo3@naegler.net> Date: Sat, 25 Oct 2014 23:10:03 +0200 Subject: [PATCH] [TASK] Use "int" in @param notation This is a follow-up patch for https://review.typo3.org/33522/ Resolves: #62467 Releases: master Change-Id: I19333d6e6c987f7e2f84faeabc01a9c724831bc4 Reviewed-on: http://review.typo3.org/33533 Reviewed-by: Wouter Wolters <typo3@wouterwolters.nl> Tested-by: Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch> Tested-by: Christian Kuhn <lolli@schwarzbu.ch> --- .../Generic/Storage/Typo3DbBackend.php | 2 +- .../AbstractFileFolderConverter.php | 4 +- .../TypeConverter/DateTimeConverter.php | 2 +- .../Property/TypeConverter/FileConverter.php | 2 +- .../Generic/Mapper/DataMapperTest.php | 2 +- .../Classes/Domain/Model/Extension.php | 2 +- .../Tests/Unit/Domain/Model/ExtensionTest.php | 2 +- .../Classes/Plugin/AbstractPlugin.php | 2 +- .../Controller/IndexedPagesController.php | 26 +++---- .../IndexingStatisticsController.php | 6 +- .../Classes/Controller/SearchController.php | 4 +- .../Controller/SearchFormController.php | 34 ++++----- .../Repository/IndexSearchRepository.php | 6 +- .../Classes/Hook/CrawlerHook.php | 10 +-- .../sysext/indexed_search/Classes/Indexer.php | 72 +++++++++---------- typo3/sysext/indexed_search/Classes/Lexer.php | 16 ++--- .../Classes/Domain/Model/DeletedRecords.php | 14 ++-- .../recycler/Classes/Domain/Model/Tables.php | 4 +- .../Classes/Utility/RecyclerUtility.php | 6 +- .../Controller/FrontendRteController.php | 4 +- .../Classes/Extension/AboutEditor.php | 2 +- .../rtehtmlarea/Classes/Extension/Acronym.php | 2 +- .../Classes/Extension/BlockElements.php | 2 +- .../Classes/Extension/CharacterMap.php | 2 +- .../Classes/Extension/ContextMenu.php | 2 +- .../Classes/Extension/CopyPaste.php | 2 +- .../Classes/Extension/DefaultClean.php | 2 +- .../Classes/Extension/DefaultImage.php | 2 +- .../Classes/Extension/DefaultInline.php | 2 +- .../Classes/Extension/DefaultLink.php | 2 +- .../Classes/Extension/DefinitionList.php | 2 +- .../Classes/Extension/EditElement.php | 2 +- .../Classes/Extension/FindReplace.php | 2 +- .../Classes/Extension/InlineElements.php | 2 +- .../Classes/Extension/InsertSmiley.php | 2 +- .../Classes/Extension/Language.php | 2 +- .../Classes/Extension/MicroDataSchema.php | 2 +- .../Classes/Extension/Plaintext.php | 2 +- .../Classes/Extension/RemoveFormat.php | 2 +- .../Classes/Extension/SelectFont.php | 4 +- .../Classes/Extension/Spellchecker.php | 2 +- .../Classes/Extension/TableOperations.php | 2 +- .../Classes/Extension/TextIndicator.php | 2 +- .../Classes/Extension/Typo3Color.php | 4 +- .../Classes/Extension/Typo3HtmlParser.php | 2 +- .../Classes/Extension/Typo3Image.php | 2 +- .../Classes/Extension/Typo3Link.php | 2 +- .../Classes/Extension/UndoRedo.php | 2 +- .../Classes/Extension/UserElements.php | 2 +- .../rtehtmlarea/Classes/RteHtmlAreaApi.php | 2 +- .../rtehtmlarea/Classes/RteHtmlAreaBase.php | 10 +-- .../rtehtmlarea/Classes/SelectImage.php | 4 +- 52 files changed, 149 insertions(+), 149 deletions(-) diff --git a/typo3/sysext/extbase/Classes/Persistence/Generic/Storage/Typo3DbBackend.php b/typo3/sysext/extbase/Classes/Persistence/Generic/Storage/Typo3DbBackend.php index c1a2df8f12a9..9c9fa0f9be9d 100644 --- a/typo3/sysext/extbase/Classes/Persistence/Generic/Storage/Typo3DbBackend.php +++ b/typo3/sysext/extbase/Classes/Persistence/Generic/Storage/Typo3DbBackend.php @@ -705,7 +705,7 @@ class Typo3DbBackend implements BackendInterface, \TYPO3\CMS\Core\SingletonInter * @param Qom\SourceInterface $source The source (selector od join) * @param array $rows * @param \TYPO3\CMS\Extbase\Persistence\Generic\QuerySettingsInterface $querySettings The TYPO3 CMS specific query settings - * @param null|integer $workspaceUid + * @param null|int $workspaceUid * @return array */ protected function doLanguageAndWorkspaceOverlay(Qom\SourceInterface $source, array $rows, \TYPO3\CMS\Extbase\Persistence\Generic\QuerySettingsInterface $querySettings, $workspaceUid = NULL) { diff --git a/typo3/sysext/extbase/Classes/Property/TypeConverter/AbstractFileFolderConverter.php b/typo3/sysext/extbase/Classes/Property/TypeConverter/AbstractFileFolderConverter.php index 616789fb29cf..9b2504cfe307 100644 --- a/typo3/sysext/extbase/Classes/Property/TypeConverter/AbstractFileFolderConverter.php +++ b/typo3/sysext/extbase/Classes/Property/TypeConverter/AbstractFileFolderConverter.php @@ -40,7 +40,7 @@ abstract class AbstractFileFolderConverter extends \TYPO3\CMS\Extbase\Property\T * Actually convert from $source to $targetType, taking into account the fully * built $convertedChildProperties and $configuration. * - * @param string|integer $source + * @param string|int $source * @param string $targetType * @param array $convertedChildProperties * @param \TYPO3\CMS\Extbase\Property\PropertyMappingConfigurationInterface $configuration @@ -60,7 +60,7 @@ abstract class AbstractFileFolderConverter extends \TYPO3\CMS\Extbase\Property\T } /** - * @param string|integer $source + * @param string|int $source * @return \TYPO3\CMS\Core\Resource\ResourceInterface */ abstract protected function getOriginalResource($source); diff --git a/typo3/sysext/extbase/Classes/Property/TypeConverter/DateTimeConverter.php b/typo3/sysext/extbase/Classes/Property/TypeConverter/DateTimeConverter.php index f749a5e63312..8b88d50442ab 100644 --- a/typo3/sysext/extbase/Classes/Property/TypeConverter/DateTimeConverter.php +++ b/typo3/sysext/extbase/Classes/Property/TypeConverter/DateTimeConverter.php @@ -113,7 +113,7 @@ class DateTimeConverter extends \TYPO3\CMS\Extbase\Property\TypeConverter\Abstra /** * Converts $source to a \DateTime using the configured dateFormat * - * @param string|integer|array $source the string to be converted to a \DateTime object + * @param string|int|array $source the string to be converted to a \DateTime object * @param string $targetType must be "DateTime" * @param array $convertedChildProperties not used currently * @param \TYPO3\CMS\Extbase\Property\PropertyMappingConfigurationInterface $configuration diff --git a/typo3/sysext/extbase/Classes/Property/TypeConverter/FileConverter.php b/typo3/sysext/extbase/Classes/Property/TypeConverter/FileConverter.php index fddc5bb668cf..dd3c7ed41e20 100644 --- a/typo3/sysext/extbase/Classes/Property/TypeConverter/FileConverter.php +++ b/typo3/sysext/extbase/Classes/Property/TypeConverter/FileConverter.php @@ -36,7 +36,7 @@ class FileConverter extends \TYPO3\CMS\Extbase\Property\TypeConverter\AbstractFi protected $expectedObjectType = 'TYPO3\\CMS\\Core\\Resource\\File'; /** - * @param string|integer $source + * @param string|int $source * @return \TYPO3\CMS\Core\Resource\FileInterface|\TYPO3\CMS\Core\Resource\Folder */ protected function getOriginalResource($source) { diff --git a/typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Mapper/DataMapperTest.php b/typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Mapper/DataMapperTest.php index b8590c81af10..6039c8a98a70 100644 --- a/typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Mapper/DataMapperTest.php +++ b/typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Mapper/DataMapperTest.php @@ -215,7 +215,7 @@ class DataMapperTest extends \TYPO3\CMS\Core\Tests\UnitTestCase { } /** - * @param NULL|string|integer $value + * @param NULL|string|int $value * @param NULL|string $storageFormat * @param NULL|string $expectedValue * @test diff --git a/typo3/sysext/extensionmanager/Classes/Domain/Model/Extension.php b/typo3/sysext/extensionmanager/Classes/Domain/Model/Extension.php index 97f7dfd0f73f..2b49b09ce2ae 100644 --- a/typo3/sysext/extensionmanager/Classes/Domain/Model/Extension.php +++ b/typo3/sysext/extensionmanager/Classes/Domain/Model/Extension.php @@ -218,7 +218,7 @@ class Extension extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity { * Returns category index from a given string or a integer. * Fallback to 4 - 'misc' in case string is not found or integer ist out of range. * - * @param string|integer $category Category string or integer + * @param string|int $category Category string or integer * @return integer Valid category index */ public function getCategoryIndexFromStringOrNumber($category) { diff --git a/typo3/sysext/extensionmanager/Tests/Unit/Domain/Model/ExtensionTest.php b/typo3/sysext/extensionmanager/Tests/Unit/Domain/Model/ExtensionTest.php index 40b188a48131..b0666ba2ec0c 100644 --- a/typo3/sysext/extensionmanager/Tests/Unit/Domain/Model/ExtensionTest.php +++ b/typo3/sysext/extensionmanager/Tests/Unit/Domain/Model/ExtensionTest.php @@ -76,7 +76,7 @@ class ExtensionTest extends \TYPO3\CMS\Core\Tests\UnitTestCase { /** * @test * @dataProvider getCategoryIndexFromStringOrNumberReturnsIndexDataProvider - * @param string|integer $input Given input + * @param string|int $input Given input * @param int $expected Expected result * @return void */ diff --git a/typo3/sysext/frontend/Classes/Plugin/AbstractPlugin.php b/typo3/sysext/frontend/Classes/Plugin/AbstractPlugin.php index 983db1314636..1360eeca1dbf 100644 --- a/typo3/sysext/frontend/Classes/Plugin/AbstractPlugin.php +++ b/typo3/sysext/frontend/Classes/Plugin/AbstractPlugin.php @@ -1066,7 +1066,7 @@ class AbstractPlugin { * Returns a commalist of page ids for a query (eg. 'WHERE pid IN (...)') * * @param string $pid_list A comma list of page ids (if empty current page is used) - * @param int$recursive An integer >=0 telling how deep to dig for pids under each entry in $pid_list + * @param int $recursive An integer >=0 telling how deep to dig for pids under each entry in $pid_list * @return string List of PID values (comma separated) */ public function pi_getPidList($pid_list, $recursive = 0) { diff --git a/typo3/sysext/indexed_search/Classes/Controller/IndexedPagesController.php b/typo3/sysext/indexed_search/Classes/Controller/IndexedPagesController.php index fda07c5f96bd..59e11d6c6ff1 100644 --- a/typo3/sysext/indexed_search/Classes/Controller/IndexedPagesController.php +++ b/typo3/sysext/indexed_search/Classes/Controller/IndexedPagesController.php @@ -460,7 +460,7 @@ class IndexedPagesController extends \TYPO3\CMS\Backend\Module\AbstractFunctionM /** * Showing details for a particular phash row * - * @param integer phash value to display details for. + * @param int phash value to display details for. * @return string HTML content */ public function showDetailsForPhash($phash) { @@ -597,7 +597,7 @@ class IndexedPagesController extends \TYPO3\CMS\Backend\Module\AbstractFunctionM * Wraps input string in a link that will display details for the word. Eg. which other pages has the word, metaphone associations etc. * * @param string String to wrap, possibly a title or so. - * @param integer wid value to show details for + * @param int wid value to show details for * @return string Wrapped string */ public function linkWordDetails($string, $wid) { @@ -608,7 +608,7 @@ class IndexedPagesController extends \TYPO3\CMS\Backend\Module\AbstractFunctionM * Wraps input string in a link to see more details for metaphone value * * @param string String to wrap - * @param integer Metaphone value + * @param int Metaphone value * @return string Wrapped string */ public function linkMetaPhoneDetails($string, $metaphone) { @@ -618,7 +618,7 @@ class IndexedPagesController extends \TYPO3\CMS\Backend\Module\AbstractFunctionM /** * Creates message for flag value * - * @param integer Flags integer + * @param int Flags integer * @return string Message string */ public function flagsMsg($flags) { @@ -635,7 +635,7 @@ class IndexedPagesController extends \TYPO3\CMS\Backend\Module\AbstractFunctionM /** * Show details for words * - * @param integer Word ID (wid) + * @param int Word ID (wid) * @return string HTML content */ public function showDetailsForWord($wid) { @@ -678,7 +678,7 @@ class IndexedPagesController extends \TYPO3\CMS\Backend\Module\AbstractFunctionM /** * Show details for metaphone value * - * @param integer Metaphone integer hash + * @param int Metaphone integer hash * @return string HTML content */ public function showDetailsForMetaphone($metaphone) { @@ -745,7 +745,7 @@ class IndexedPagesController extends \TYPO3\CMS\Backend\Module\AbstractFunctionM * Wraps input string in a link that will display details for the phash value set. * * @param string String to wrap, possibly a title or so. - * @param integer phash value to show details for + * @param int phash value to show details for * @return string Wrapped string */ public function linkDetails($string, $phash) { @@ -765,7 +765,7 @@ class IndexedPagesController extends \TYPO3\CMS\Backend\Module\AbstractFunctionM * Wraps input string in a link that will display details for the phash value set. * * @param string String to wrap, possibly a title or so. - * @param integer phash value to show details for + * @param int phash value to show details for * @return string Wrapped string */ public function showPageDetails($string, $id) { @@ -850,8 +850,8 @@ class IndexedPagesController extends \TYPO3\CMS\Backend\Module\AbstractFunctionM /** * Re-indexing files/records attached to a page. * - * @param integer Phash value - * @param integer The page uid for the section record (file/url could appear more than one place you know...) + * @param int Phash value + * @param int The page uid for the section record (file/url could appear more than one place you know...) * @return string HTML content */ public function reindexPhash($phash, $pageId) { @@ -891,7 +891,7 @@ class IndexedPagesController extends \TYPO3\CMS\Backend\Module\AbstractFunctionM * Get rootline for closest TypoScript template root. * Algorithm same as used in Web > Template, Object browser * - * @param integer The page id to traverse rootline back from + * @param int The page id to traverse rootline back from * @return array Array where the root lines uid values are found. */ public function getUidRootLineForClosestTemplate($id) { @@ -963,7 +963,7 @@ class IndexedPagesController extends \TYPO3\CMS\Backend\Module\AbstractFunctionM /** * Returns an array with gr_list records for a phash * - * @param integer phash integer to look up on + * @param int phash integer to look up on * @param string gr_list string to filter OUT of the result (first occurence) * @return array Array of records from index_grlist table */ @@ -1003,7 +1003,7 @@ class IndexedPagesController extends \TYPO3\CMS\Backend\Module\AbstractFunctionM * Setting / Unsetting keywords in page header * * @param array Page keywords as keys in array with value 0 or 1 for set or unset. - * @param integer The page uid of the header where the keywords are to be set. + * @param int The page uid of the header where the keywords are to be set. * @return void */ public function processPageKeywords($pageKeywords, $pageUid) { diff --git a/typo3/sysext/indexed_search/Classes/Controller/IndexingStatisticsController.php b/typo3/sysext/indexed_search/Classes/Controller/IndexingStatisticsController.php index cd583e844631..3e676b77ea05 100644 --- a/typo3/sysext/indexed_search/Classes/Controller/IndexingStatisticsController.php +++ b/typo3/sysext/indexed_search/Classes/Controller/IndexingStatisticsController.php @@ -134,9 +134,9 @@ class IndexingStatisticsController extends \TYPO3\CMS\Backend\Module\AbstractFun * Generates a list of Page-uid's from $id. List does not include $id itself * The only pages excluded from the list are deleted pages. * - * @param integer Start page id - * @param integer Depth to traverse down the page tree. - * @param integer $begin is an optional integer that determines at which level in the tree to start collecting uid's. Zero means 'start right away', 1 = 'next level and out' + * @param int Start page id + * @param int Depth to traverse down the page tree. + * @param int $begin is an optional integer that determines at which level in the tree to start collecting uid's. Zero means 'start right away', 1 = 'next level and out' * @param string Perms clause * @return string Returns the list with a comma in the end (if any pages selected!) */ diff --git a/typo3/sysext/indexed_search/Classes/Controller/SearchController.php b/typo3/sysext/indexed_search/Classes/Controller/SearchController.php index e91b5b1b9770..081404d39d18 100644 --- a/typo3/sysext/indexed_search/Classes/Controller/SearchController.php +++ b/typo3/sysext/indexed_search/Classes/Controller/SearchController.php @@ -648,8 +648,8 @@ class SearchController extends \TYPO3\CMS\Extbase\Mvc\Controller\ActionControlle * * @param array search params * @param array Search Word array - * @param integer Number of hits - * @param integer Milliseconds the search took + * @param int Number of hits + * @param int Milliseconds the search took * @return void */ protected function writeSearchStat($searchParams, $searchWords, $count, $pt) { diff --git a/typo3/sysext/indexed_search/Classes/Controller/SearchFormController.php b/typo3/sysext/indexed_search/Classes/Controller/SearchFormController.php index dd81cf6f4229..42cd0dedf656 100644 --- a/typo3/sysext/indexed_search/Classes/Controller/SearchFormController.php +++ b/typo3/sysext/indexed_search/Classes/Controller/SearchFormController.php @@ -558,7 +558,7 @@ class SearchFormController extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin { * Gets a SQL result pointer to traverse for the search records. * * @param array Search words - * @param integer Pointer to which indexing configuration you want to search in. -1 means no filtering. 0 means only regular indexed content. + * @param int Pointer to which indexing configuration you want to search in. -1 means no filtering. 0 means only regular indexed content. * @return pointer */ public function getResultRows_SQLpointer($sWArr, $freeIndexUid = -1) { @@ -581,7 +581,7 @@ class SearchFormController extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin { * * @param array Search words array (for display of text describing what was searched for) * @param array Array with result rows, count, first row. - * @param integer Pointer to which indexing configuration you want to search in. -1 means no filtering. 0 means only regular indexed content. + * @param int Pointer to which indexing configuration you want to search in. -1 means no filtering. 0 means only regular indexed content. * @return string HTML content to display result. */ public function getDisplayResults($sWArr, $resData, $freeIndexUid = -1) { @@ -625,7 +625,7 @@ class SearchFormController extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin { * Takes the "group" var into account: Makes a "section" or "flat" display. * * @param array Result rows - * @param integer Pointer to which indexing configuration you want to search in. -1 means no filtering. 0 means only regular indexed content. + * @param int Pointer to which indexing configuration you want to search in. -1 means no filtering. 0 means only regular indexed content. * @return string HTML */ public function compileResult($resultRows, $freeIndexUid = -1) { @@ -960,7 +960,7 @@ class SearchFormController extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin { /** * Where-clause for free index-uid value. * - * @param integer Free Index UID value to limit search to. + * @param int Free Index UID value to limit search to. * @return string WHERE SQL clause part. */ public function freeIndexUidWhere($freeIndexUid) { @@ -1000,7 +1000,7 @@ class SearchFormController extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin { * Execute final query, based on phash integer list. The main point is sorting the result in the right order. * * @param string List of phash integers which match the search. - * @param integer Pointer to which indexing configuration you want to search in. -1 means no filtering. 0 means only regular indexed content. + * @param int Pointer to which indexing configuration you want to search in. -1 means no filtering. 0 means only regular indexed content. * @return pointer Query result pointer */ public function execFinalQuery($list, $freeIndexUid = -1) { @@ -1186,8 +1186,8 @@ class SearchFormController extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin { * Write statistics information to database for the search operation * * @param array Search Word array - * @param integer Number of hits - * @param integer Milliseconds the search took + * @param int Number of hits + * @param int Milliseconds the search took * @return void */ public function writeSearchStat($sWArr, $count, $pt) { @@ -1417,7 +1417,7 @@ class SearchFormController extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin { * * @param string ID for the section (used for anchor link) * @param string Section title with linked wrapped around - * @param integer Number of results in section + * @param int Number of results in section * @return string HTML output */ public function makeSectionHeader($id, $sectionTitleLinked, $countResultRows) { @@ -1434,7 +1434,7 @@ class SearchFormController extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin { * This prints a single result row, including a recursive call for subrows. * * @param array Search result row - * @param integer 1=Display only header (for sub-rows!), 2=nothing at all + * @param int 1=Display only header (for sub-rows!), 2=nothing at all * @return string HTML code */ public function printResultRow($row, $headerOnly = 0) { @@ -1687,7 +1687,7 @@ class SearchFormController extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin { * Notice how the links must resubmit the form after setting the new pointer-value in a hidden formfield. * * @param string String to wrap in <a> tag - * @param integer Pointer value + * @param int Pointer value * @param string List of integers pointing to free indexing configurations to search. -1 represents no filtering, 0 represents TYPO3 pages only, any number above zero is a uid of an indexing configuration! * @return string Input string wrapped in <a> tag with onclick event attribute set. */ @@ -1793,7 +1793,7 @@ class SearchFormController extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin { * * @param array Search result row * @param bool If noMarkup is FALSE, then the index_fulltext table is used to select the content of the page, split it with regex to display the search words in the text. - * @param integer String length + * @param int String length * @return string HTML string ... */ public function makeDescription($row, $noMarkup = 0, $lgd = 180) { @@ -1992,7 +1992,7 @@ class SearchFormController extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin { * Returns the HTML code for the locking symbol. * NOTICE: Requires a call to ->getPathFromPageId() first in order to work (done in ->makeInfo() by calling that first) * - * @param integer Page id for which to find answer + * @param int Page id for which to find answer * @return string <img> tag if access is limited. */ public function makeAccessIndication($id) { @@ -2004,7 +2004,7 @@ class SearchFormController extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin { /** * Links the $str to page $id * - * @param integer Page id + * @param int Page id * @param string Title String to link * @param array Result row * @param array Additional parameters for marking up seach words @@ -2052,7 +2052,7 @@ class SearchFormController extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin { /** * Returns the path to the page $id * - * @param integer Page ID + * @param int Page ID * @param string MP variable content. * @return string Root line for result. */ @@ -2067,7 +2067,7 @@ class SearchFormController extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin { /** * Gets the first sys_domain record for the page, $id * - * @param integer Page id + * @param int Page id * @return string Domain name */ public function getFirstSysDomainRecordForPage($id) { @@ -2079,7 +2079,7 @@ class SearchFormController extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin { /** * Returns the path to the page $id * - * @param integer Page ID + * @param int Page ID * @param string MP variable content * @return string Path */ @@ -2125,7 +2125,7 @@ class SearchFormController extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin { /** * Return the menu of pages used for the selector. * - * @param integer Page ID for which to return menu + * @param int Page ID for which to return menu * @return array Menu items (for making the section selector box) */ public function getMenu($id) { diff --git a/typo3/sysext/indexed_search/Classes/Domain/Repository/IndexSearchRepository.php b/typo3/sysext/indexed_search/Classes/Domain/Repository/IndexSearchRepository.php index a39e438c8b35..48fca58aa825 100644 --- a/typo3/sysext/indexed_search/Classes/Domain/Repository/IndexSearchRepository.php +++ b/typo3/sysext/indexed_search/Classes/Domain/Repository/IndexSearchRepository.php @@ -357,7 +357,7 @@ class IndexSearchRepository { * Search for a word * * @param string the search word - * @param integer constant from this class to see if the wildcard should be left and/or right of the search string + * @param int constant from this class to see if the wildcard should be left and/or right of the search string * @return pointer SQL result pointer */ protected function searchWord($sWord, $mode) { @@ -494,7 +494,7 @@ class IndexSearchRepository { /** * Where-clause for free index-uid value. * - * @param integer Free Index UID value to limit search to. + * @param int Free Index UID value to limit search to. * @return string WHERE SQL clause part. */ public function freeIndexUidWhere($freeIndexUid) { @@ -536,7 +536,7 @@ class IndexSearchRepository { * Execute final query, based on phash integer list. The main point is sorting the result in the right order. * * @param string List of phash integers which match the search. - * @param integer Pointer to which indexing configuration you want to search in. -1 means no filtering. 0 means only regular indexed content. + * @param int Pointer to which indexing configuration you want to search in. -1 means no filtering. 0 means only regular indexed content. * @return pointer Query result pointer */ protected function execFinalQuery($list, $freeIndexUid = -1) { diff --git a/typo3/sysext/indexed_search/Classes/Hook/CrawlerHook.php b/typo3/sysext/indexed_search/Classes/Hook/CrawlerHook.php index cd1ad7a36154..ffbaefe76f3f 100644 --- a/typo3/sysext/indexed_search/Classes/Hook/CrawlerHook.php +++ b/typo3/sysext/indexed_search/Classes/Hook/CrawlerHook.php @@ -464,10 +464,10 @@ class CrawlerHook { * Indexing External URL * * @param string URL, http://.... - * @param integer Page id to relate indexing to. + * @param int Page id to relate indexing to. * @param array Rootline array to relate indexing to - * @param integer Configuration UID - * @param integer Set ID value + * @param int Configuration UID + * @param int Set ID value * @return array URLs found on this page */ public function indexExtUrl($url, $pageId, $rl, $cfgUid, $setId) { @@ -554,7 +554,7 @@ class CrawlerHook { * Get rootline for closest TypoScript template root. * Algorithm same as used in Web > Template, Object browser * - * @param integer The page id to traverse rootline back from + * @param int The page id to traverse rootline back from * @return array Array where the root lines uid values are found. */ public function getUidRootLineForClosestTemplate($id) { @@ -641,7 +641,7 @@ class CrawlerHook { /** * Deletes all data stored by indexed search for a given page * - * @param integer Uid of the page to delete all pHash + * @param int Uid of the page to delete all pHash * @return void */ public function deleteFromIndex($id) { diff --git a/typo3/sysext/indexed_search/Classes/Indexer.php b/typo3/sysext/indexed_search/Classes/Indexer.php index c2bc17fb6b3c..ffbefb1318a3 100644 --- a/typo3/sysext/indexed_search/Classes/Indexer.php +++ b/typo3/sysext/indexed_search/Classes/Indexer.php @@ -233,9 +233,9 @@ class Indexer { /** * Initializing the "combined ID" of the page (phash) being indexed (or for which external media is attached) * - * @param integer The page uid, &id= - * @param integer The page type, &type= - * @param integer sys_language uid, typically &L= + * @param int The page uid, &id= + * @param int The page type, &type= + * @param int sys_language uid, typically &L= * @param string The MP variable (Mount Points), &MP= * @param array Rootline array of only UIDs. * @param array Array of GET variables to register with this indexing @@ -287,8 +287,8 @@ class Indexer { /** * Sets the free-index uid. Can be called right after backend_initIndexer() * - * @param integer Free index UID - * @param integer Set id - an integer identifying the "set" of indexing operations. + * @param int Free index UID + * @param int Set id - an integer identifying the "set" of indexing operations. * @return void */ public function backend_setFreeIndexUid($freeIndexUid, $freeIndexSetId = 0) { @@ -304,9 +304,9 @@ class Indexer { * @param string Description equivalent * @param string The main content to index * @param string The charset of the title, keyword, description and body-content. MUST BE VALID, otherwise nothing is indexed! - * @param integer Last modification time, in seconds - * @param integer The creation date of the content, in seconds - * @param integer The record UID that the content comes from (for registration with the indexed rows) + * @param int Last modification time, in seconds + * @param int The creation date of the content, in seconds + * @param int The record UID that the content comes from (for registration with the indexed rows) * @return void */ public function backend_indexAsTYPO3Page($title, $keywords, $description, $content, $charset, $mtime, $crdate = 0, $recordUid = 0) { @@ -809,7 +809,7 @@ class Indexer { * Getting HTTP request headers of URL * * @param string The URL - * @param integer Timeout (seconds?) + * @param int Timeout (seconds?) * @return mixed If no answer, returns FALSE. Otherwise an array where HTTP headers are keys */ public function getUrlHeaders($url) { @@ -1221,7 +1221,7 @@ class Indexer { * @param array Index array, passed by reference * @param array Standard content array * @param string Key from standard content array - * @param integer Bit-wise priority to type + * @param int Bit-wise priority to type * @return void */ public function analyzeHeaderinfo(&$retArr, $content, $key, $offset) { @@ -1384,8 +1384,8 @@ class Indexer { /** * Stores gr_list in the database. * - * @param integer Search result record phash - * @param integer Actual phash of current content + * @param int Search result record phash + * @param int Actual phash of current content * @return void * @see update_grlist() */ @@ -1406,8 +1406,8 @@ class Indexer { * Stores section * $hash and $hash_t3 are the same for TYPO3 pages, but different when it is external files. * - * @param integer phash of TYPO3 parent search result record - * @param integer phash of the file indexation search record + * @param int phash of TYPO3 parent search result record + * @param int phash of the file indexation search record * @return void */ public function submit_section($hash, $hash_t3) { @@ -1425,7 +1425,7 @@ class Indexer { /** * Removes records for the indexed page, $phash * - * @param integer phash value to flush + * @param int phash value to flush * @return void */ public function removeOldIndexedPages($phash) { @@ -1454,10 +1454,10 @@ class Indexer { * @param string File name * @param array Array of "cHashParams" for files: This is for instance the page index for a PDF file (other document types it will be a zero) * @param string File extension determining the type of media. - * @param integer Modification time of file. - * @param integer Creation time of file. - * @param integer Size of file in bytes - * @param integer Content HASH value. + * @param int Modification time of file. + * @param int Creation time of file. + * @param int Size of file in bytes + * @param int Content HASH value. * @param array Standard content array (using only title and body for a file) * @return void */ @@ -1526,7 +1526,7 @@ class Indexer { /** * Stores file gr_list for a file IF it does not exist already * - * @param integer phash value of file + * @param int phash value of file * @return void */ public function submitFile_grlist($hash) { @@ -1542,7 +1542,7 @@ class Indexer { /** * Stores file section for a file IF it does not exist * - * @param integer phash value of file + * @param int phash value of file * @return void */ public function submitFile_section($hash) { @@ -1558,7 +1558,7 @@ class Indexer { /** * Removes records for the indexed page, $phash * - * @param integer phash value to flush + * @param int phash value to flush * @return void */ public function removeOldIndexedFiles($phash) { @@ -1580,8 +1580,8 @@ class Indexer { * Check the mtime / tstamp of the currently indexed page/file (based on phash) * Return positive integer if the page needs to be indexed * - * @param integer mtime value to test against limits and indexed page (usually this is the mtime of the cached document) - * @param integer "phash" used to select any already indexed page to see what its mtime is. + * @param int mtime value to test against limits and indexed page (usually this is the mtime of the cached document) + * @param int "phash" used to select any already indexed page to see what its mtime is. * @return integer Result integer: Generally: <0 = No indexing, >0 = Do indexing (see $this->reasons): -2) Min age was NOT exceeded and so indexing cannot occur. -1) mtime matched so no need to reindex page. 0) N/A 1) Max age exceeded, page must be indexed again. 2) mtime of indexed page doesn't match mtime given for current content and we must index page. 3) No mtime was set, so we will index... 4) No indexed page found, so of course we will index. */ public function checkMtimeTstamp($mtime, $phash) { @@ -1653,8 +1653,8 @@ class Indexer { * Check content hash for external documents * Returns TRUE if the document needs to be indexed (that is, there was no result) * - * @param integer phash value to check (phash_grouping) - * @param integer Content hash to check + * @param int phash value to check (phash_grouping) + * @param int Content hash to check * @return boolean Returns TRUE if the document needs to be indexed (that is, there was no result) */ public function checkExternalDocContentHash($hashGr, $content_md5h) { @@ -1669,7 +1669,7 @@ class Indexer { /** * Checks if a grlist record has been set for the phash value input (looking at the "real" phash of the current content, not the linked-to phash of the common search result page) * - * @param integer Phash integer to test. + * @param int Phash integer to test. * @return boolean */ public function is_grlist_set($phash_x) { @@ -1684,8 +1684,8 @@ class Indexer { /** * Check if an grlist-entry for this hash exists and if not so, write one. * - * @param integer phash of the search result that should be found - * @param integer The real phash of the current content. The two values are different when a page with userlogin turns out to contain the exact same content as another already indexed version of the page; This is the whole reason for the grlist table in fact... + * @param int phash of the search result that should be found + * @param int The real phash of the current content. The two values are different when a page with userlogin turns out to contain the exact same content as another already indexed version of the page; This is the whole reason for the grlist table in fact... * @return void * @see submit_grlist() */ @@ -1702,8 +1702,8 @@ class Indexer { /** * Update tstamp for a phash row. * - * @param integer phash value - * @param integer If set, update the mtime field to this value. + * @param int phash value + * @param int If set, update the mtime field to this value. * @return void */ public function updateTstamp($phash, $mtime = 0) { @@ -1721,7 +1721,7 @@ class Indexer { /** * Update SetID of the index_phash record. * - * @param integer phash value + * @param int phash value * @return void */ public function updateSetId($phash) { @@ -1736,8 +1736,8 @@ class Indexer { /** * Update parsetime for phash row. * - * @param integer phash value. - * @param integer Parsetime value to set. + * @param int phash value. + * @param int Parsetime value to set. * @return void */ public function updateParsetime($phash, $parsetime) { @@ -1855,7 +1855,7 @@ class Indexer { * Submits RELATIONS between words and phash * * @param array Word list array - * @param integer phash value + * @param int phash value * @return void */ public function submitWords($wordList, $phash) { @@ -1980,7 +1980,7 @@ class Indexer { * Set log message function wrapper for TT logging * * @param string Message to set - * @param integer Error number + * @param int Error number * @return void */ public function log_setTSlogMessage($msg, $errorNum = 0) { diff --git a/typo3/sysext/indexed_search/Classes/Lexer.php b/typo3/sysext/indexed_search/Classes/Lexer.php index f143588b4e33..619e1ebe1058 100644 --- a/typo3/sysext/indexed_search/Classes/Lexer.php +++ b/typo3/sysext/indexed_search/Classes/Lexer.php @@ -111,8 +111,8 @@ class Lexer { * * @param array Array of accumulated words * @param string Complete Input string from where to extract word - * @param integer Start position of word in input string - * @param integer The Length of the word string from start position + * @param int Start position of word in input string + * @param int The Length of the word string from start position * @return void */ public function addWords(&$words, &$wordString, $start, $len) { @@ -158,7 +158,7 @@ class Lexer { * Get the first word in a given utf-8 string (initial non-letters will be skipped) * * @param string Input string (reference) - * @param integer Starting position in input string + * @param int Starting position in input string * @return array 0: start, 1: len or FALSE if no word has been found */ public function get_word(&$str, $pos = 0) { @@ -181,8 +181,8 @@ class Lexer { * See if a character is a letter (or a string of letters or non-letters). * * @param string Input string (reference) - * @param integer Byte-length of character sequence (reference, return value) - * @param integer Starting position in input string + * @param int Byte-length of character sequence (reference, return value) + * @param int Starting position in input string * @return boolean letter (or word) found */ public function utf8_is_letter(&$str, &$len, $pos = 0) { @@ -251,7 +251,7 @@ class Lexer { /** * Determine the type of character * - * @param integer Unicode number to evaluate + * @param int Unicode number to evaluate * @return array Type of char; index-0: the main type: num, alpha or CJK (Chinese / Japanese / Korean) */ public function charType($cp) { @@ -275,8 +275,8 @@ class Lexer { * Converts a UTF-8 multibyte character to a UNICODE codepoint * * @param string UTF-8 multibyte character string (reference) - * @param integer The length of the character (reference, return value) - * @param integer Starting position in input string + * @param int The length of the character (reference, return value) + * @param int Starting position in input string * @param bool If set, then a hex. number is returned * @return integer UNICODE codepoint */ diff --git a/typo3/sysext/recycler/Classes/Domain/Model/DeletedRecords.php b/typo3/sysext/recycler/Classes/Domain/Model/DeletedRecords.php index 773e8e5e2c2a..1d439b5cb1b8 100644 --- a/typo3/sysext/recycler/Classes/Domain/Model/DeletedRecords.php +++ b/typo3/sysext/recycler/Classes/Domain/Model/DeletedRecords.php @@ -72,10 +72,10 @@ class DeletedRecords { * Load all deleted rows from $table * If table is not set, it iterates the TCA tables * - * @param integer $id: UID from selected page + * @param int $id: UID from selected page * @param string $table: Tablename - * @param integer $depth: How many levels recursive - * @param integer $limit: MySQL LIMIT + * @param int $depth: How many levels recursive + * @param int $limit: MySQL LIMIT * @param string $filter: Filter text * @return recycler_model_delRecords */ @@ -107,9 +107,9 @@ class DeletedRecords { /** * Find the total count of deleted records * - * @param integer $id: UID from record + * @param int $id: UID from record * @param string $table: Tablename from record - * @param integer $depth: How many levels recursive + * @param int $depth: How many levels recursive * @param string $filter: Filter text * @return void */ @@ -125,9 +125,9 @@ class DeletedRecords { /** * Set all deleted rows * - * @param integer $id: UID from record + * @param int $id: UID from record * @param string $table: Tablename from record - * @param integer $depth: How many levels recursive + * @param int $depth: How many levels recursive * @param array $ctrl: TCA CTRL Array * @param string $filter: Filter text * @return void diff --git a/typo3/sysext/recycler/Classes/Domain/Model/Tables.php b/typo3/sysext/recycler/Classes/Domain/Model/Tables.php index 86ca867583d5..638b9d185b6c 100644 --- a/typo3/sysext/recycler/Classes/Domain/Model/Tables.php +++ b/typo3/sysext/recycler/Classes/Domain/Model/Tables.php @@ -26,8 +26,8 @@ class Tables { * * @param string $format: Return format (example: json) * @param bool $withAllOption: 0 no, 1 return tables with a "all" option - * @param integer $id: UID from selected page - * @param integer $depth: How many levels recursive + * @param int $id: UID from selected page + * @param int $depth: How many levels recursive * @return string The tables to be displayed */ public function getTables($format, $withAllOption = 0, $startUid, $depth = 0) { diff --git a/typo3/sysext/recycler/Classes/Utility/RecyclerUtility.php b/typo3/sysext/recycler/Classes/Utility/RecyclerUtility.php index d14fc612f556..d308b6b5d3d1 100644 --- a/typo3/sysext/recycler/Classes/Utility/RecyclerUtility.php +++ b/typo3/sysext/recycler/Classes/Utility/RecyclerUtility.php @@ -68,10 +68,10 @@ class RecyclerUtility { * Each part of the path will be limited to $titleLimit characters * Deleted pages are filtered out. * - * @param integer Page uid for which to create record path + * @param int Page uid for which to create record path * @param string $clause is additional where clauses, eg. - * @param integer Title limit - * @param integer Title limit of Full title (typ. set to 1000 or so) + * @param int Title limit + * @param int Title limit of Full title (typ. set to 1000 or so) * @return mixed Path of record (string) OR array with short/long title if $fullTitleLimit is set. */ static public function getRecordPath($uid, $clause = '', $titleLimit = 1000, $fullTitleLimit = 0) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Controller/FrontendRteController.php b/typo3/sysext/rtehtmlarea/Classes/Controller/FrontendRteController.php index 18adbb982687..055e0e0dfa91 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Controller/FrontendRteController.php +++ b/typo3/sysext/rtehtmlarea/Classes/Controller/FrontendRteController.php @@ -94,7 +94,7 @@ class FrontendRteController extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaBase { * @param array Configuration for RTEs; A mix between TSconfig and otherwise. Contains configuration for display, which buttons are enabled, additional transformation information etc. * @param string Record "type" field value. * @param string Relative path for images/links in RTE; this is used when the RTE edits content from static files where the path of such media has to be transformed forth and back! - * @param integer PID value of record (true parent page id) + * @param int PID value of record (true parent page id) * @return string HTML code for RTE! */ public function drawRTE(&$parentObject, $table, $field, $row, $PA, $specConf, $thisConfig, $RTEtypeVal, $RTErelPath, $thePidValue) { @@ -268,7 +268,7 @@ class FrontendRteController extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaBase { * Return the JS-Code for copy the HTML-Code from the editor in the hidden input field. * This is for submit function from the form. * - * @param integer $RTEcounter: The index number of the RTE editing area. + * @param int $RTEcounter: The index number of the RTE editing area. * @param string $form: the name of the form * @param string $textareaId: the id of the textarea * @return string the JS-Code diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/AboutEditor.php b/typo3/sysext/rtehtmlarea/Classes/Extension/AboutEditor.php index 312b01506edf..4de2b089d68c 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/AboutEditor.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/AboutEditor.php @@ -53,7 +53,7 @@ class AboutEditor extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/Acronym.php b/typo3/sysext/rtehtmlarea/Classes/Extension/Acronym.php index e85d999001ac..b7fcc69b14ef 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/Acronym.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/Acronym.php @@ -79,7 +79,7 @@ class Acronym extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins, in this case, JS configuration of block elements */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/BlockElements.php b/typo3/sysext/rtehtmlarea/Classes/Extension/BlockElements.php index 21a6d79810fc..547fb00df3fd 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/BlockElements.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/BlockElements.php @@ -88,7 +88,7 @@ class BlockElements extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins, in this case, JS configuration of block elements */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/CharacterMap.php b/typo3/sysext/rtehtmlarea/Classes/Extension/CharacterMap.php index 526704861e52..d4bd54ad5071 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/CharacterMap.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/CharacterMap.php @@ -54,7 +54,7 @@ class CharacterMap extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/ContextMenu.php b/typo3/sysext/rtehtmlarea/Classes/Extension/ContextMenu.php index b5537b24c506..8003584ef25c 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/ContextMenu.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/ContextMenu.php @@ -56,7 +56,7 @@ class ContextMenu extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins */ public function buildJavascriptConfiguration($editorId) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/CopyPaste.php b/typo3/sysext/rtehtmlarea/Classes/Extension/CopyPaste.php index ca040674b34c..4bac1a4c562c 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/CopyPaste.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/CopyPaste.php @@ -73,7 +73,7 @@ class CopyPaste extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/DefaultClean.php b/typo3/sysext/rtehtmlarea/Classes/Extension/DefaultClean.php index c61cb2631165..786fbc9f6dda 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/DefaultClean.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/DefaultClean.php @@ -57,7 +57,7 @@ class DefaultClean extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins, in this case, JS configuration of block elements */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/DefaultImage.php b/typo3/sysext/rtehtmlarea/Classes/Extension/DefaultImage.php index 234196bde995..4ae369ea4b6a 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/DefaultImage.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/DefaultImage.php @@ -59,7 +59,7 @@ class DefaultImage extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/DefaultInline.php b/typo3/sysext/rtehtmlarea/Classes/Extension/DefaultInline.php index e9d9e8f4535c..0efd42eddcbd 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/DefaultInline.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/DefaultInline.php @@ -58,7 +58,7 @@ class DefaultInline extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/DefaultLink.php b/typo3/sysext/rtehtmlarea/Classes/Extension/DefaultLink.php index 7c8091173f60..f0479f704d5a 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/DefaultLink.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/DefaultLink.php @@ -54,7 +54,7 @@ class DefaultLink extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/DefinitionList.php b/typo3/sysext/rtehtmlarea/Classes/Extension/DefinitionList.php index 540faff516bf..a6a0e2b829c7 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/DefinitionList.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/DefinitionList.php @@ -65,7 +65,7 @@ class DefinitionList extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/EditElement.php b/typo3/sysext/rtehtmlarea/Classes/Extension/EditElement.php index f615b11b5a7d..08e7a973b7dc 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/EditElement.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/EditElement.php @@ -56,7 +56,7 @@ class EditElement extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/FindReplace.php b/typo3/sysext/rtehtmlarea/Classes/Extension/FindReplace.php index d0d8f74882b4..ca09a1ed71e8 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/FindReplace.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/FindReplace.php @@ -53,7 +53,7 @@ class FindReplace extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/InlineElements.php b/typo3/sysext/rtehtmlarea/Classes/Extension/InlineElements.php index 4b1029c3d65e..d1a2b12fabeb 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/InlineElements.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/InlineElements.php @@ -130,7 +130,7 @@ class InlineElements extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/InsertSmiley.php b/typo3/sysext/rtehtmlarea/Classes/Extension/InsertSmiley.php index 1f654fe9e292..88e0a4e83860 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/InsertSmiley.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/InsertSmiley.php @@ -53,7 +53,7 @@ class InsertSmiley extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/Language.php b/typo3/sysext/rtehtmlarea/Classes/Extension/Language.php index 659a0b047bfb..13eaf99f260c 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/Language.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/Language.php @@ -63,7 +63,7 @@ class Language extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/MicroDataSchema.php b/typo3/sysext/rtehtmlarea/Classes/Extension/MicroDataSchema.php index cad43fd3fb62..514bb82dedb9 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/MicroDataSchema.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/MicroDataSchema.php @@ -53,7 +53,7 @@ class MicroDataSchema extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/Plaintext.php b/typo3/sysext/rtehtmlarea/Classes/Extension/Plaintext.php index 56220a80ac1a..d724e866397a 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/Plaintext.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/Plaintext.php @@ -59,7 +59,7 @@ class Plaintext extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/RemoveFormat.php b/typo3/sysext/rtehtmlarea/Classes/Extension/RemoveFormat.php index b2088bc460f6..92e4f4784c2d 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/RemoveFormat.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/RemoveFormat.php @@ -53,7 +53,7 @@ class RemoveFormat extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/SelectFont.php b/typo3/sysext/rtehtmlarea/Classes/Extension/SelectFont.php index 0a7918768f0e..5b4f72a8ee1f 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/SelectFont.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/SelectFont.php @@ -89,7 +89,7 @@ class SelectFont extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins */ public function buildJavascriptConfiguration($RTEcounter) { @@ -107,7 +107,7 @@ class SelectFont extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return Javascript configuration of font faces * - * @param integer $RTEcounter: The index number of the current RTE editing area within the form. + * @param int $RTEcounter: The index number of the current RTE editing area within the form. * @param string $buttonId: button id * @return string Javascript configuration of font faces */ diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/Spellchecker.php b/typo3/sysext/rtehtmlarea/Classes/Extension/Spellchecker.php index 076efd19e847..4a482915505f 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/Spellchecker.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/Spellchecker.php @@ -61,7 +61,7 @@ class Spellchecker extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/TableOperations.php b/typo3/sysext/rtehtmlarea/Classes/Extension/TableOperations.php index 9612b3ab5999..a3ca896bae88 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/TableOperations.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/TableOperations.php @@ -88,7 +88,7 @@ class TableOperations extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins, in this case, JS configuration of block elements */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/TextIndicator.php b/typo3/sysext/rtehtmlarea/Classes/Extension/TextIndicator.php index e46cc44b54dc..6c1dfc8b40a8 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/TextIndicator.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/TextIndicator.php @@ -53,7 +53,7 @@ class TextIndicator extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/Typo3Color.php b/typo3/sysext/rtehtmlarea/Classes/Extension/Typo3Color.php index 8c8f737aa7a1..dacff21cb4d1 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/Typo3Color.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/Typo3Color.php @@ -58,7 +58,7 @@ class Typo3Color extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins */ public function buildJavascriptConfiguration($RTEcounter) { @@ -70,7 +70,7 @@ class Typo3Color extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return Javascript configuration of colors * - * @param integer $RTEcounter: The index number of the current RTE editing area within the form. + * @param int $RTEcounter: The index number of the current RTE editing area within the form. * @return string Javascript configuration of colors */ public function buildJSColorsConfig($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/Typo3HtmlParser.php b/typo3/sysext/rtehtmlarea/Classes/Extension/Typo3HtmlParser.php index 6b126d4b8521..023cdfdc1171 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/Typo3HtmlParser.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/Typo3HtmlParser.php @@ -57,7 +57,7 @@ class Typo3HtmlParser extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins, in this case, JS configuration of block elements */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/Typo3Image.php b/typo3/sysext/rtehtmlarea/Classes/Extension/Typo3Image.php index b4a816b5eee7..baa4e5627ae2 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/Typo3Image.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/Typo3Image.php @@ -61,7 +61,7 @@ class Typo3Image extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins, in this case, JS configuration of block elements */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/Typo3Link.php b/typo3/sysext/rtehtmlarea/Classes/Extension/Typo3Link.php index 81ce29d7b3b2..a0b07eaac781 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/Typo3Link.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/Typo3Link.php @@ -63,7 +63,7 @@ class Typo3Link extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins, in this case, JS configuration of block elements */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/UndoRedo.php b/typo3/sysext/rtehtmlarea/Classes/Extension/UndoRedo.php index 2fca92f5ad4c..0a2ce10f8241 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/UndoRedo.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/UndoRedo.php @@ -54,7 +54,7 @@ class UndoRedo extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/Extension/UserElements.php b/typo3/sysext/rtehtmlarea/Classes/Extension/UserElements.php index 22633e1bd964..5e56fceac43d 100644 --- a/typo3/sysext/rtehtmlarea/Classes/Extension/UserElements.php +++ b/typo3/sysext/rtehtmlarea/Classes/Extension/UserElements.php @@ -53,7 +53,7 @@ class UserElements extends \TYPO3\CMS\Rtehtmlarea\RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins, in this case, JS configuration of block elements */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/RteHtmlAreaApi.php b/typo3/sysext/rtehtmlarea/Classes/RteHtmlAreaApi.php index 8448339c873e..97d1641a2be0 100644 --- a/typo3/sysext/rtehtmlarea/Classes/RteHtmlAreaApi.php +++ b/typo3/sysext/rtehtmlarea/Classes/RteHtmlAreaApi.php @@ -135,7 +135,7 @@ abstract class RteHtmlAreaApi { /** * Return JS configuration of the htmlArea plugins registered by the extension * - * @param integer Relative id of the RTE editing area in the form + * @param int Relative id of the RTE editing area in the form * @return string JS configuration for registered plugins */ public function buildJavascriptConfiguration($RTEcounter) { diff --git a/typo3/sysext/rtehtmlarea/Classes/RteHtmlAreaBase.php b/typo3/sysext/rtehtmlarea/Classes/RteHtmlAreaBase.php index 79a0979859e0..0c49205af70e 100644 --- a/typo3/sysext/rtehtmlarea/Classes/RteHtmlAreaBase.php +++ b/typo3/sysext/rtehtmlarea/Classes/RteHtmlAreaBase.php @@ -883,7 +883,7 @@ class RteHtmlAreaBase extends \TYPO3\CMS\Backend\Rte\AbstractRte { /** * Return the Javascript code for configuring the RTE * - * @param integer $RTEcounter: The index number of the current RTE editing area within the form. + * @param int $RTEcounter: The index number of the current RTE editing area within the form. * @param string $table: The table that includes this RTE (optional, necessary for IRRE). * @param string $uid: The uid of that table that includes this RTE (optional, necessary for IRRE). * @param string $field: The field of that record that includes this RTE (optional). @@ -1044,7 +1044,7 @@ class RteHtmlAreaBase extends \TYPO3\CMS\Backend\Rte\AbstractRte { /** * Return Javascript configuration of classes * - * @param integer $RTEcounter: The index number of the current RTE editing area within the form. + * @param int $RTEcounter: The index number of the current RTE editing area within the form. * @return string Javascript configuration of classes */ public function buildJSClassesConfig($RTEcounter) { @@ -1181,7 +1181,7 @@ class RteHtmlAreaBase extends \TYPO3\CMS\Backend\Rte\AbstractRte { /** * Return a file name containing the main JS language array for HTMLArea * - * @param integer $RTEcounter: The index number of the current RTE editing area within the form. + * @param int $RTEcounter: The index number of the current RTE editing area within the form. * @return string filename */ public function buildJSMainLangFile($RTEcounter) { @@ -1341,7 +1341,7 @@ class RteHtmlAreaBase extends \TYPO3\CMS\Backend\Rte\AbstractRte { * Return the Javascript code for copying the HTML code from the editor into the hidden input field. * This is for submit function of the form. * - * @param integer $RTEcounter: The index number of the current RTE editing area within the form. + * @param int $RTEcounter: The index number of the current RTE editing area within the form. * @param string $formName: the name of the form * @param string $textareaId: the id of the textarea * @param string $textareaName: the name of the textarea @@ -1355,7 +1355,7 @@ class RteHtmlAreaBase extends \TYPO3\CMS\Backend\Rte\AbstractRte { * Return the Javascript code for copying the HTML code from the editor into the hidden input field. * This is for submit function of the form. * - * @param integer $RTEcounter: The index number of the current RTE editing area within the form. + * @param int $RTEcounter: The index number of the current RTE editing area within the form. * @param string $formName: the name of the form * @param string $textareaId: the id of the textarea * @return string Javascript code diff --git a/typo3/sysext/rtehtmlarea/Classes/SelectImage.php b/typo3/sysext/rtehtmlarea/Classes/SelectImage.php index a7fc9a9c713a..adcca9f32812 100644 --- a/typo3/sysext/rtehtmlarea/Classes/SelectImage.php +++ b/typo3/sysext/rtehtmlarea/Classes/SelectImage.php @@ -252,8 +252,8 @@ class SelectImage extends \TYPO3\CMS\Recordlist\Browser\ElementBrowser { * Echo the HTML page and JS that will insert the image * * @param string $url: the url of the image - * @param integer $width: the width of the image - * @param integer $height: the height of the image + * @param int $width: the width of the image + * @param int $height: the height of the image * @param string $altText: text for the alt attribute of the image * @param string $titleText: text for the title attribute of the image * @param string $additionalParams: text representing more html attributes to be added on the img tag -- GitLab