From e0516e391ae7c9b5346293bd483560e7da2c7485 Mon Sep 17 00:00:00 2001 From: Jennifer Hodgdon <yahgrp@poplarware.com> Date: Tue, 8 Dec 2015 09:48:23 -0800 Subject: [PATCH] Issue #2607870 by Lars Toomre: Some docblock fixes for PHP type 'integer' --- .../lib/Drupal/Component/Gettext/PoHeader.php | 4 +-- core/lib/Drupal/Core/Database/Connection.php | 2 +- .../Core/Database/Driver/pgsql/Schema.php | 2 +- .../Entity/Element/EntityAutocomplete.php | 2 +- .../Plugin/DataType/EntityReference.php | 2 +- .../Core/Template/TwigTransTokenParser.php | 2 +- .../TypedData/Plugin/DataType/Timestamp.php | 2 +- .../comment/src/Tests/CommentNonNodeTest.php | 2 +- .../comment/src/Tests/CommentTestBase.php | 4 +-- .../Migrate/MigrateContactCategoryTest.php | 12 ++++----- .../src/FieldTranslationSynchronizer.php | 2 +- .../Tests/ContentTranslationSyncUnitTest.php | 2 +- .../EntityReferenceFileUploadTest.php | 2 +- .../src/Tests/Migrate/d7/MigrateFieldTest.php | 4 +-- .../Plugin/migrate/destination/EntityFile.php | 14 +++++----- .../src/Tests/Migrate/d6/MigrateFileTest.php | 18 ++++++------- .../src/Tests/Migrate/d7/MigrateFileTest.php | 26 +++++++++---------- core/modules/help/src/Tests/HelpTest.php | 4 +-- .../src/Entity/ConfigurableLanguage.php | 4 +-- core/modules/locale/src/StringBase.php | 2 +- .../locale/src/Tests/LocaleUpdateBase.php | 8 +++--- core/modules/menu_ui/src/Tests/MenuTest.php | 4 +-- core/modules/simpletest/src/TestBase.php | 2 +- .../simpletest/src/UserCreationTrait.php | 4 +-- .../src/Tests/Database/ConnectionUnitTest.php | 6 ++--- .../plugin_test/mock_block/MockMenuBlock.php | 2 +- .../taxonomy/src/Entity/Vocabulary.php | 4 +-- .../Views/TaxonomyTermFilterDepthTest.php | 4 +-- .../taxonomy/src/VocabularyInterface.php | 4 +-- core/modules/user/src/UserDataInterface.php | 6 ++--- core/modules/views/src/ResultRow.php | 2 +- .../Tests/Component/Utility/SortArrayTest.php | 8 +++--- 32 files changed, 83 insertions(+), 83 deletions(-) diff --git a/core/lib/Drupal/Component/Gettext/PoHeader.php b/core/lib/Drupal/Component/Gettext/PoHeader.php index aa8ea201e0b5..ebd366ffb2ba 100644 --- a/core/lib/Drupal/Component/Gettext/PoHeader.php +++ b/core/lib/Drupal/Component/Gettext/PoHeader.php @@ -471,10 +471,10 @@ private function tokenizeFormula($formula) { * * @param array $element_stack * Array of plural formula values and operators create by parseArithmetic(). - * @param integer $n + * @param int $n * The @count number for which we are determining the right plural position. * - * @return integer + * @return int * Number of the plural string to be used for the given plural value. * * @see parseArithmetic() diff --git a/core/lib/Drupal/Core/Database/Connection.php b/core/lib/Drupal/Core/Database/Connection.php index 03335773c409..2aa63151ad25 100644 --- a/core/lib/Drupal/Core/Database/Connection.php +++ b/core/lib/Drupal/Core/Database/Connection.php @@ -90,7 +90,7 @@ abstract class Connection { /** * An index used to generate unique temporary table names. * - * @var integer + * @var int */ protected $temporaryNameIndex = 0; diff --git a/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php b/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php index c59e2e43ea59..d12788f105e0 100644 --- a/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php +++ b/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php @@ -39,7 +39,7 @@ class Schema extends DatabaseSchema { * Value will usually be set to a 63 chars limit but PostgreSQL allows * to higher this value before compiling, so we need to check for that. * - * @var integer + * @var int */ protected $maxIdentifierLength; diff --git a/core/lib/Drupal/Core/Entity/Element/EntityAutocomplete.php b/core/lib/Drupal/Core/Entity/Element/EntityAutocomplete.php index 6dd6e10cff94..603e099d2d0a 100644 --- a/core/lib/Drupal/Core/Entity/Element/EntityAutocomplete.php +++ b/core/lib/Drupal/Core/Entity/Element/EntityAutocomplete.php @@ -243,7 +243,7 @@ public static function validateEntityAutocomplete(array &$element, FormStateInte * Whether to trigger a form error if an element from $input (eg. an entity) * is not found. * - * @return integer|null + * @return int|null * Value of a matching entity ID, or NULL if none. */ protected static function matchEntityByTitle($handler, $input, &$element, FormStateInterface $form_state, $strict) { diff --git a/core/lib/Drupal/Core/Entity/Plugin/DataType/EntityReference.php b/core/lib/Drupal/Core/Entity/Plugin/DataType/EntityReference.php index 00590a545fa6..365fa5633e7e 100644 --- a/core/lib/Drupal/Core/Entity/Plugin/DataType/EntityReference.php +++ b/core/lib/Drupal/Core/Entity/Plugin/DataType/EntityReference.php @@ -41,7 +41,7 @@ class EntityReference extends DataReferenceBase { /** * The entity ID. * - * @var integer|string + * @var int|string */ protected $id; diff --git a/core/lib/Drupal/Core/Template/TwigTransTokenParser.php b/core/lib/Drupal/Core/Template/TwigTransTokenParser.php index 009cc9c02232..e87bd65bd84e 100644 --- a/core/lib/Drupal/Core/Template/TwigTransTokenParser.php +++ b/core/lib/Drupal/Core/Template/TwigTransTokenParser.php @@ -84,7 +84,7 @@ public function getTag() { * * @param \Twig_Node $body * The expression to check. - * @param integer $lineno + * @param int $lineno * The source line. * * @throws \Twig_Error_Syntax diff --git a/core/lib/Drupal/Core/TypedData/Plugin/DataType/Timestamp.php b/core/lib/Drupal/Core/TypedData/Plugin/DataType/Timestamp.php index 49a95e04f9cb..a98a0d7e9d6b 100644 --- a/core/lib/Drupal/Core/TypedData/Plugin/DataType/Timestamp.php +++ b/core/lib/Drupal/Core/TypedData/Plugin/DataType/Timestamp.php @@ -23,7 +23,7 @@ class Timestamp extends IntegerData implements DateTimeInterface { /** * The data value as a UNIX timestamp. * - * @var integer + * @var int */ protected $value; diff --git a/core/modules/comment/src/Tests/CommentNonNodeTest.php b/core/modules/comment/src/Tests/CommentNonNodeTest.php index c7f3e71a5ab8..aa0694228364 100644 --- a/core/modules/comment/src/Tests/CommentNonNodeTest.php +++ b/core/modules/comment/src/Tests/CommentNonNodeTest.php @@ -240,7 +240,7 @@ function performCommentOperation($comment, $operation, $approval = FALSE) { * @param string $subject * Comment subject to find. * - * @return integer + * @return int * Comment ID. */ function getUnapprovedComment($subject) { diff --git a/core/modules/comment/src/Tests/CommentTestBase.php b/core/modules/comment/src/Tests/CommentTestBase.php index 62e43f6a0616..17eccb9aadd3 100644 --- a/core/modules/comment/src/Tests/CommentTestBase.php +++ b/core/modules/comment/src/Tests/CommentTestBase.php @@ -288,7 +288,7 @@ public function setCommentForm($enabled, $field_name = 'comment') { /** * Sets the value governing restrictions on anonymous comments. * - * @param integer $level + * @param int $level * The level of the contact information allowed for anonymous comments: * - 0: No contact information allowed. * - 1: Contact information allowed but not required. @@ -373,7 +373,7 @@ function performCommentOperation(CommentInterface $comment, $operation, $approva * @param string $subject * Comment subject to find. * - * @return integer + * @return int * Comment id. */ function getUnapprovedComment($subject) { diff --git a/core/modules/contact/src/Tests/Migrate/MigrateContactCategoryTest.php b/core/modules/contact/src/Tests/Migrate/MigrateContactCategoryTest.php index 4f127a4c9bc0..aa9df2dcc21e 100644 --- a/core/modules/contact/src/Tests/Migrate/MigrateContactCategoryTest.php +++ b/core/modules/contact/src/Tests/Migrate/MigrateContactCategoryTest.php @@ -37,15 +37,15 @@ protected function setUp() { * Performs various assertions on a single contact form entity. * * @param string $id - * The contact form ID. + * The contact form ID. * @param string $expected_label - * The expected label. + * The expected label. * @param string[] $expected_recipients - * The recipient e-mail addresses the form should have. + * The recipient e-mail addresses the form should have. * @param string $expected_reply - * The expected reply message. - * @param integer $expected_weight - * The contact form's expected weight. + * The expected reply message. + * @param int $expected_weight + * The contact form's expected weight. */ protected function assertEntity($id, $expected_label, array $expected_recipients, $expected_reply, $expected_weight) { /** @var \Drupal\contact\ContactFormInterface $entity */ diff --git a/core/modules/content_translation/src/FieldTranslationSynchronizer.php b/core/modules/content_translation/src/FieldTranslationSynchronizer.php index b2dbf65469ab..386f61687447 100644 --- a/core/modules/content_translation/src/FieldTranslationSynchronizer.php +++ b/core/modules/content_translation/src/FieldTranslationSynchronizer.php @@ -187,7 +187,7 @@ public function synchronizeItems(array &$values, array $unchanged_items, $sync_l * * @param array $items * An array of field items. - * @param integer $delta + * @param int $delta * The delta identifying the item to be processed. * @param array $columns * An array of column names to be synchronized. diff --git a/core/modules/content_translation/src/Tests/ContentTranslationSyncUnitTest.php b/core/modules/content_translation/src/Tests/ContentTranslationSyncUnitTest.php index 53c5b0ac2f8a..31a51820fc30 100644 --- a/core/modules/content_translation/src/Tests/ContentTranslationSyncUnitTest.php +++ b/core/modules/content_translation/src/Tests/ContentTranslationSyncUnitTest.php @@ -48,7 +48,7 @@ class ContentTranslationSyncUnitTest extends KernelTestBase { /** * The field cardinality. * - * @var integer + * @var int */ protected $cardinality; diff --git a/core/modules/field/src/Tests/EntityReference/EntityReferenceFileUploadTest.php b/core/modules/field/src/Tests/EntityReference/EntityReferenceFileUploadTest.php index a57104f4c04c..eb9f6404066d 100644 --- a/core/modules/field/src/Tests/EntityReference/EntityReferenceFileUploadTest.php +++ b/core/modules/field/src/Tests/EntityReference/EntityReferenceFileUploadTest.php @@ -36,7 +36,7 @@ class EntityReferenceFileUploadTest extends WebTestBase { /** * Node id. * - * @var integer + * @var int */ protected $nodeId; diff --git a/core/modules/field/src/Tests/Migrate/d7/MigrateFieldTest.php b/core/modules/field/src/Tests/Migrate/d7/MigrateFieldTest.php index c846b89b3d05..7daf734800d1 100644 --- a/core/modules/field/src/Tests/Migrate/d7/MigrateFieldTest.php +++ b/core/modules/field/src/Tests/Migrate/d7/MigrateFieldTest.php @@ -53,9 +53,9 @@ protected function setUp() { * The entity ID in the form ENTITY_TYPE.FIELD_NAME. * @param string $expected_type * The expected field type. - * @param boolean $expected_translatable + * @param bool $expected_translatable * Whether or not the field is expected to be translatable. - * @param integer $expected_cardinality + * @param int $expected_cardinality * The expected cardinality of the field. */ protected function assertEntity($id, $expected_type, $expected_translatable, $expected_cardinality) { diff --git a/core/modules/file/src/Plugin/migrate/destination/EntityFile.php b/core/modules/file/src/Plugin/migrate/destination/EntityFile.php index 38c3f8716da6..89667f117870 100644 --- a/core/modules/file/src/Plugin/migrate/destination/EntityFile.php +++ b/core/modules/file/src/Plugin/migrate/destination/EntityFile.php @@ -145,11 +145,11 @@ public function import(Row $row, array $old_destination_id_values = array()) { * Tries to move or copy a file. * * @param string $source - * The source path or URI. + * The source path or URI. * @param string $destination - * The destination path or URI. - * @param integer $replace - * FILE_EXISTS_REPLACE (default) or FILE_EXISTS_RENAME. + * The destination path or URI. + * @param int $replace + * (optional) FILE_EXISTS_REPLACE (default) or FILE_EXISTS_RENAME. * * @return bool * TRUE on success, FALSE on failure. @@ -170,9 +170,9 @@ protected function writeFile($source, $destination, $replace = FILE_EXISTS_REPLA * * @param \Drupal\migrate\Row $row * - * @return integer - * Either FILE_EXISTS_REPLACE (default) or FILE_EXISTS_RENAME, depending - * on the current configuration. + * @return int + * Either FILE_EXISTS_REPLACE (default) or FILE_EXISTS_RENAME, depending + * on the current configuration. */ protected function getOverwriteMode(Row $row) { if (!empty($this->configuration['rename'])) { diff --git a/core/modules/file/src/Tests/Migrate/d6/MigrateFileTest.php b/core/modules/file/src/Tests/Migrate/d6/MigrateFileTest.php index 4277133e9e6c..2bda4c0089aa 100644 --- a/core/modules/file/src/Tests/Migrate/d6/MigrateFileTest.php +++ b/core/modules/file/src/Tests/Migrate/d6/MigrateFileTest.php @@ -50,18 +50,18 @@ protected function setUp() { /** * Asserts a file entity. * - * @param integer $fid - * The file ID. + * @param int $fid + * The file ID. * @param string $name - * The expected file name. - * @param integer $size - * The expected file size. + * The expected file name. + * @param int $size + * The expected file size. * @param string $uri - * The expected file URI. + * The expected file URI. * @param string $type - * The expected MIME type. - * @param integer $uid - * The expected file owner ID. + * The expected MIME type. + * @param int $uid + * The expected file owner ID. */ protected function assertEntity($fid, $name, $size, $uri, $type, $uid) { /** @var \Drupal\file\FileInterface $file */ diff --git a/core/modules/file/src/Tests/Migrate/d7/MigrateFileTest.php b/core/modules/file/src/Tests/Migrate/d7/MigrateFileTest.php index da1a6d251d5f..2d54d78166da 100644 --- a/core/modules/file/src/Tests/Migrate/d7/MigrateFileTest.php +++ b/core/modules/file/src/Tests/Migrate/d7/MigrateFileTest.php @@ -53,22 +53,22 @@ protected function setUp() { /** * Tests a single file entity. * - * @param integer $id - * The file ID. + * @param int $id + * The file ID. * @param string $name - * The expected file name. + * The expected file name. * @param string $uri - * The expected URI. + * The expected URI. * @param string $mime - * The expected MIME type. - * @param integer $size - * The expected file size. - * @param integer $created - * The expected creation time. - * @param integer $changed - * The expected modification time. - * @param integer $uid - * The expected owner ID. + * The expected MIME type. + * @param int $size + * The expected file size. + * @param int $created + * The expected creation time. + * @param int $changed + * The expected modification time. + * @param int $uid + * The expected owner ID. */ protected function assertEntity($id, $name, $uri, $mime, $size, $created, $changed, $uid) { /** @var \Drupal\file\FileInterface $file */ diff --git a/core/modules/help/src/Tests/HelpTest.php b/core/modules/help/src/Tests/HelpTest.php index f3c90836ba4d..64ad4a773fbf 100644 --- a/core/modules/help/src/Tests/HelpTest.php +++ b/core/modules/help/src/Tests/HelpTest.php @@ -86,8 +86,8 @@ public function testHelp() { /** * Verifies the logged in user has access to the various help nodes. * - * @param integer $response - * An HTTP response code. + * @param int $response + * (optional) An HTTP response code. Defaults to 200. */ protected function verifyHelp($response = 200) { $this->drupalGet('admin/index'); diff --git a/core/modules/language/src/Entity/ConfigurableLanguage.php b/core/modules/language/src/Entity/ConfigurableLanguage.php index 89cc16767dd2..fe7f9f6deb4f 100644 --- a/core/modules/language/src/Entity/ConfigurableLanguage.php +++ b/core/modules/language/src/Entity/ConfigurableLanguage.php @@ -63,14 +63,14 @@ class ConfigurableLanguage extends ConfigEntityBase implements ConfigurableLangu /** * The direction of language, either DIRECTION_LTR or DIRECTION_RTL. * - * @var integer + * @var int */ protected $direction = self::DIRECTION_LTR; /** * The weight of the language, used in lists of languages. * - * @var integer + * @var int */ protected $weight = 0; diff --git a/core/modules/locale/src/StringBase.php b/core/modules/locale/src/StringBase.php index 1aa7696492a9..658f5657f804 100644 --- a/core/modules/locale/src/StringBase.php +++ b/core/modules/locale/src/StringBase.php @@ -17,7 +17,7 @@ abstract class StringBase implements StringInterface { /** * The string identifier. * - * @var integer + * @var int */ public $lid; diff --git a/core/modules/locale/src/Tests/LocaleUpdateBase.php b/core/modules/locale/src/Tests/LocaleUpdateBase.php index 41922bbc4f1a..cc2aed324a71 100644 --- a/core/modules/locale/src/Tests/LocaleUpdateBase.php +++ b/core/modules/locale/src/Tests/LocaleUpdateBase.php @@ -19,28 +19,28 @@ abstract class LocaleUpdateBase extends WebTestBase { /** * Timestamp for an old translation. * - * @var integer + * @var int */ protected $timestampOld; /** * Timestamp for a medium aged translation. * - * @var integer + * @var int */ protected $timestampMedium; /** * Timestamp for a new translation. * - * @var integer + * @var int */ protected $timestampNew; /** * Timestamp for current time. * - * @var integer + * @var int */ protected $timestampNow; diff --git a/core/modules/menu_ui/src/Tests/MenuTest.php b/core/modules/menu_ui/src/Tests/MenuTest.php index f8c26c9038ba..6e130b3d1c35 100644 --- a/core/modules/menu_ui/src/Tests/MenuTest.php +++ b/core/modules/menu_ui/src/Tests/MenuTest.php @@ -901,8 +901,8 @@ private function getStandardMenuLink() { /** * Verifies the logged in user has the desired access to various menu pages. * - * @param integer $response - * The expected HTTP response code. Defaults to 200. + * @param int $response + * (optional) The expected HTTP response code. Defaults to 200. */ private function verifyAccess($response = 200) { // View menu help page. diff --git a/core/modules/simpletest/src/TestBase.php b/core/modules/simpletest/src/TestBase.php index 60ad260958fd..1cdc231c421d 100644 --- a/core/modules/simpletest/src/TestBase.php +++ b/core/modules/simpletest/src/TestBase.php @@ -96,7 +96,7 @@ abstract class TestBase { /** * Incrementing identifier for verbose output filenames. * - * @var integer + * @var int */ protected $verboseId = 0; diff --git a/core/modules/simpletest/src/UserCreationTrait.php b/core/modules/simpletest/src/UserCreationTrait.php index 92262cf4d810..9b308b916ffe 100644 --- a/core/modules/simpletest/src/UserCreationTrait.php +++ b/core/modules/simpletest/src/UserCreationTrait.php @@ -92,7 +92,7 @@ protected function createUser(array $permissions = array(), $name = NULL, $admin * (optional) The role ID (machine name). Defaults to a random name. * @param string $name * (optional) The label for the role. Defaults to a random string. - * @param integer $weight + * @param int $weight * (optional) The weight for the role. Defaults NULL so that entity_create() * sets the weight to maximum + 1. * @@ -119,7 +119,7 @@ protected function createAdminRole($rid = NULL, $name = NULL, $weight = NULL) { * (optional) The role ID (machine name). Defaults to a random name. * @param string $name * (optional) The label for the role. Defaults to a random string. - * @param integer $weight + * @param int $weight * (optional) The weight for the role. Defaults NULL so that entity_create() * sets the weight to maximum + 1. * diff --git a/core/modules/system/src/Tests/Database/ConnectionUnitTest.php b/core/modules/system/src/Tests/Database/ConnectionUnitTest.php index 4327ac5e00df..d1916b32ce76 100644 --- a/core/modules/system/src/Tests/Database/ConnectionUnitTest.php +++ b/core/modules/system/src/Tests/Database/ConnectionUnitTest.php @@ -66,7 +66,7 @@ protected function addConnection() { /** * Returns the connection ID of the current test connection. * - * @return integer + * @return int */ protected function getConnectionID() { return (int) Database::getConnection($this->target, $this->key)->query('SELECT CONNECTION_ID()')->fetchField(); @@ -75,7 +75,7 @@ protected function getConnectionID() { /** * Asserts that a connection ID exists. * - * @param integer $id + * @param int $id * The connection ID to verify. */ protected function assertConnection($id) { @@ -86,7 +86,7 @@ protected function assertConnection($id) { /** * Asserts that a connection ID does not exist. * - * @param integer $id + * @param int $id * The connection ID to verify. */ protected function assertNoConnection($id) { diff --git a/core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockMenuBlock.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockMenuBlock.php index 7ca628fc0fcb..8c12a666d35f 100644 --- a/core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockMenuBlock.php +++ b/core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockMenuBlock.php @@ -24,7 +24,7 @@ class MockMenuBlock { /** * The number of menu levels deep to render. * - * @var integer + * @var int */ protected $depth; diff --git a/core/modules/taxonomy/src/Entity/Vocabulary.php b/core/modules/taxonomy/src/Entity/Vocabulary.php index c8cc1c0e96a6..5d6ae1d6a8c9 100644 --- a/core/modules/taxonomy/src/Entity/Vocabulary.php +++ b/core/modules/taxonomy/src/Entity/Vocabulary.php @@ -82,14 +82,14 @@ class Vocabulary extends ConfigEntityBundleBase implements VocabularyInterface { * - TAXONOMY_HIERARCHY_SINGLE: Single parent. * - TAXONOMY_HIERARCHY_MULTIPLE: Multiple parents. * - * @var integer + * @var int */ protected $hierarchy = TAXONOMY_HIERARCHY_DISABLED; /** * The weight of this vocabulary in relation to other vocabularies. * - * @var integer + * @var int */ protected $weight = 0; diff --git a/core/modules/taxonomy/src/Tests/Views/TaxonomyTermFilterDepthTest.php b/core/modules/taxonomy/src/Tests/Views/TaxonomyTermFilterDepthTest.php index 2704c9f6c3b8..7d929eacd5af 100644 --- a/core/modules/taxonomy/src/Tests/Views/TaxonomyTermFilterDepthTest.php +++ b/core/modules/taxonomy/src/Tests/Views/TaxonomyTermFilterDepthTest.php @@ -118,9 +118,9 @@ public function testTermWithDepthFilter() { /** * Changes the tid filter to given term and depth. * - * @param integer $tid + * @param int $tid * The term ID to filter on. - * @param integer $depth + * @param int $depth * The depth to search. * @param array $expected * The expected views result. diff --git a/core/modules/taxonomy/src/VocabularyInterface.php b/core/modules/taxonomy/src/VocabularyInterface.php index 78b38d7e9b8a..e6e9e79fde9a 100644 --- a/core/modules/taxonomy/src/VocabularyInterface.php +++ b/core/modules/taxonomy/src/VocabularyInterface.php @@ -17,7 +17,7 @@ interface VocabularyInterface extends ConfigEntityInterface { /** * Returns the vocabulary hierarchy. * - * @return integer + * @return int * The vocabulary hierarchy. */ public function getHierarchy(); @@ -25,7 +25,7 @@ public function getHierarchy(); /** * Sets the vocabulary hierarchy. * - * @param integer $hierarchy + * @param int $hierarchy * The hierarchy type of vocabulary. * Possible values: * - TAXONOMY_HIERARCHY_DISABLED: No parents. diff --git a/core/modules/user/src/UserDataInterface.php b/core/modules/user/src/UserDataInterface.php index d7305285f9ef..be373f2a7dcc 100644 --- a/core/modules/user/src/UserDataInterface.php +++ b/core/modules/user/src/UserDataInterface.php @@ -17,7 +17,7 @@ interface UserDataInterface { * * @param string $module * The name of the module the data is associated with. - * @param integer $uid + * @param int $uid * (optional) The user account ID the data is associated with. * @param string $name * (optional) The name of the data key. @@ -41,7 +41,7 @@ public function get($module, $uid = NULL, $name = NULL); * * @param string $module * The name of the module the data is associated with. - * @param integer $uid + * @param int $uid * The user account ID the data is associated with. * @param string $name * The name of the data key. @@ -58,7 +58,7 @@ public function set($module, $uid, $name, $value); * @param string|array $module * (optional) The name of the module the data is associated with. Can also * be an array to delete the data of multiple modules. - * @param integer|array $uid + * @param int|array $uid * (optional) The user account ID the data is associated with. If omitted, * all data for $module is deleted. Can also be an array of IDs to delete * the data of multiple user accounts. diff --git a/core/modules/views/src/ResultRow.php b/core/modules/views/src/ResultRow.php index d93d05613f03..790cc8a6b3dd 100644 --- a/core/modules/views/src/ResultRow.php +++ b/core/modules/views/src/ResultRow.php @@ -29,7 +29,7 @@ class ResultRow { /** * An incremental number which represents the row in the entire result. * - * @var integer + * @var int */ public $index; diff --git a/core/tests/Drupal/Tests/Component/Utility/SortArrayTest.php b/core/tests/Drupal/Tests/Component/Utility/SortArrayTest.php index 44110958bd12..271de1b166f6 100644 --- a/core/tests/Drupal/Tests/Component/Utility/SortArrayTest.php +++ b/core/tests/Drupal/Tests/Component/Utility/SortArrayTest.php @@ -30,7 +30,7 @@ class SortArrayTest extends UnitTestCase { * The first input array for the SortArray::sortByWeightElement() method. * @param array $b * The second input array for the SortArray::sortByWeightElement(). - * @param integer $expected + * @param int $expected * The expected output from calling the method. */ public function testSortByWeightElement($a, $b, $expected) { @@ -106,7 +106,7 @@ public function providerSortByWeightElement() { * The first input array for the SortArray::sortByWeightProperty() method. * @param array $b * The second input array for the SortArray::sortByWeightProperty(). - * @param integer $expected + * @param int $expected * The expected output from calling the method. */ public function testSortByWeightProperty($a, $b, $expected) { @@ -182,7 +182,7 @@ public function providerSortByWeightProperty() { * The first input item for comparison. * @param array $b * The second item for comparison. - * @param integer $expected + * @param int $expected * The expected output from calling the method. */ public function testSortByTitleElement($a, $b, $expected) { @@ -251,7 +251,7 @@ public function providerSortByTitleElement() { * The first input item for comparison. * @param array $b * The second item for comparison. - * @param integer $expected + * @param int $expected * The expected output from calling the method. */ public function testSortByTitleProperty($a, $b, $expected) { -- GitLab