diff --git a/typo3/sysext/backend/Classes/Form/Element/InlineElementHookInterface.php b/typo3/sysext/backend/Classes/Form/Element/InlineElementHookInterface.php index 13b7661be4accbbdf04925f7a76218cede0bf3e1..800ee990970c5941f2b7108b187e6cf96b655e92 100644 --- a/typo3/sysext/backend/Classes/Form/Element/InlineElementHookInterface.php +++ b/typo3/sysext/backend/Classes/Form/Element/InlineElementHookInterface.php @@ -27,7 +27,7 @@ interface InlineElementHookInterface * @param array $childRecord The current record of that foreign_table * @param array $childConfig TCA configuration of the current field of the child record * @param bool $isVirtual Defines whether the current records is only virtually shown and not physically part of the parent record - * @param array &$enabledControls (reference) Associative array with the enabled control items + * @param array $enabledControls (reference) Associative array with the enabled control items */ public function renderForeignRecordHeaderControl_preProcess($parentUid, $foreignTable, array $childRecord, array $childConfig, $isVirtual, array &$enabledControls); @@ -39,7 +39,7 @@ interface InlineElementHookInterface * @param array $childRecord The current record of that foreign_table * @param array $childConfig TCA configuration of the current field of the child record * @param bool $isVirtual Defines whether the current records is only virtually shown and not physically part of the parent record - * @param array &$controlItems (reference) Associative array with the currently available control items + * @param array $controlItems (reference) Associative array with the currently available control items */ public function renderForeignRecordHeaderControl_postProcess($parentUid, $foreignTable, array $childRecord, array $childConfig, $isVirtual, array &$controlItems); } diff --git a/typo3/sysext/belog/Classes/Domain/Repository/LogEntryRepository.php b/typo3/sysext/belog/Classes/Domain/Repository/LogEntryRepository.php index fd2989e8f5d9f593e2a22536ed33f74e81f9db83..12cc38e4eb86e6392024a50517301f8cc527f5e9 100644 --- a/typo3/sysext/belog/Classes/Domain/Repository/LogEntryRepository.php +++ b/typo3/sysext/belog/Classes/Domain/Repository/LogEntryRepository.php @@ -98,7 +98,7 @@ class LogEntryRepository extends \TYPO3\CMS\Extbase\Persistence\Repository * * @param \TYPO3\CMS\Belog\Domain\Model\Constraint $constraint * @param \TYPO3\CMS\Extbase\Persistence\QueryInterface $query - * @param array &$queryConstraints the query constraints to add to, will be modified + * @param array $queryConstraints the query constraints to add to, will be modified */ protected function addPageTreeConstraintsToQuery(\TYPO3\CMS\Belog\Domain\Model\Constraint $constraint, \TYPO3\CMS\Extbase\Persistence\QueryInterface $query, array &$queryConstraints) { @@ -126,7 +126,7 @@ class LogEntryRepository extends \TYPO3\CMS\Extbase\Persistence\Repository * * @param \TYPO3\CMS\Belog\Domain\Model\Constraint $constraint * @param \TYPO3\CMS\Extbase\Persistence\QueryInterface $query - * @param array &$queryConstraints the query constraints to add to, will be modified + * @param array $queryConstraints the query constraints to add to, will be modified */ protected function addUsersAndGroupsToQueryConstraints(\TYPO3\CMS\Belog\Domain\Model\Constraint $constraint, \TYPO3\CMS\Extbase\Persistence\QueryInterface $query, array &$queryConstraints) { diff --git a/typo3/sysext/core/Classes/DataHandling/DataHandlerCheckModifyAccessListHookInterface.php b/typo3/sysext/core/Classes/DataHandling/DataHandlerCheckModifyAccessListHookInterface.php index 24a3494947fb40633a0280adf46ae6babf334a29..392f2822429e26e6891e8d2bb64ff282baadab0a 100644 --- a/typo3/sysext/core/Classes/DataHandling/DataHandlerCheckModifyAccessListHookInterface.php +++ b/typo3/sysext/core/Classes/DataHandling/DataHandlerCheckModifyAccessListHookInterface.php @@ -22,7 +22,7 @@ interface DataHandlerCheckModifyAccessListHookInterface /** * Hook that determines whether a user has access to modify a table. * - * @param bool &$accessAllowed Whether the user has access to modify a table + * @param bool $accessAllowed Whether the user has access to modify a table * @param string $table The name of the table to be modified * @param \TYPO3\CMS\Core\DataHandling\DataHandler $parent The calling parent object */ diff --git a/typo3/sysext/core/Classes/Mail/Rfc822AddressesParser.php b/typo3/sysext/core/Classes/Mail/Rfc822AddressesParser.php index 8cd565526cb0044042b108a909ac38ab05340888..111186198d7e9a24c4082a20b77a5583aa07b74d 100644 --- a/typo3/sysext/core/Classes/Mail/Rfc822AddressesParser.php +++ b/typo3/sysext/core/Classes/Mail/Rfc822AddressesParser.php @@ -367,7 +367,7 @@ class Rfc822AddressesParser * * @internal * @param string $string The string to check. - * @param int &$num The number of occurrences. + * @param int $num The number of occurrences. * @param string $char The character to count. * @return int The number of occurrences of $char in $string, adjusted for backslashes. */ @@ -541,7 +541,7 @@ class Rfc822AddressesParser * mailbox = addr-spec ; simple address * phrase route-addr ; name and route-addr * - * @param string &$mailbox The string to check. + * @param string $mailbox The string to check. * @return bool Success or failure. */ protected function validateMailbox(&$mailbox) diff --git a/typo3/sysext/core/Classes/Resource/Security/FileMetadataPermissionsAspect.php b/typo3/sysext/core/Classes/Resource/Security/FileMetadataPermissionsAspect.php index d8308cf80833542c57718066902a0aee5c06ce6e..4386f6a8fd87797d26349708491e791fae89ca9e 100644 --- a/typo3/sysext/core/Classes/Resource/Security/FileMetadataPermissionsAspect.php +++ b/typo3/sysext/core/Classes/Resource/Security/FileMetadataPermissionsAspect.php @@ -57,7 +57,7 @@ class FileMetadataPermissionsAspect implements DataHandlerCheckModifyAccessListH * We "abuse" it here to actually check if access is allowed to sys_file_metadata. * * - * @param int &$accessAllowed Whether the user has access to modify a table + * @param int $accessAllowed Whether the user has access to modify a table * @param string $table The name of the table to be modified * @param DataHandler $parent The calling parent object * @throws \UnexpectedValueException diff --git a/typo3/sysext/core/Classes/TypoScript/ExtendedTemplateService.php b/typo3/sysext/core/Classes/TypoScript/ExtendedTemplateService.php index 1de43ca813e80bdd7dff6ec685eae8a8d613b584..703408595c79224d3cf8eb47fd26973cf3ddb131 100644 --- a/typo3/sysext/core/Classes/TypoScript/ExtendedTemplateService.php +++ b/typo3/sysext/core/Classes/TypoScript/ExtendedTemplateService.php @@ -649,7 +649,7 @@ class ExtendedTemplateService extends TemplateService * and turns it into a hierarchical array to show dependencies (used by TemplateAnalyzer) * * @param array $depthDataArr (empty array on external call) - * @param int &$pointer Element number (1! to count()) of $this->hierarchyInfo that should be processed. + * @param int $pointer Element number (1! to count()) of $this->hierarchyInfo that should be processed. * @return array Processed hierachyInfo. */ public function ext_process_hierarchyInfo(array $depthDataArr, &$pointer) diff --git a/typo3/sysext/core/Classes/TypoScript/Parser/TypoScriptParser.php b/typo3/sysext/core/Classes/TypoScript/Parser/TypoScriptParser.php index 5c704a8094f7ad637de38f14089e8e8b791cb06f..1bc4f72a8213be09ed211b809465fbe47c3db479 100644 --- a/typo3/sysext/core/Classes/TypoScript/Parser/TypoScriptParser.php +++ b/typo3/sysext/core/Classes/TypoScript/Parser/TypoScriptParser.php @@ -977,8 +977,8 @@ class TypoScriptParser * * @param string $filename Full absolute path+filename to the typoscript file to be included * @param int $cycleCounter Counter for detecting endless loops - * @param bool $returnFiles When set, filenames of included files will be prepended to the array &$includedFiles - * @param array &$includedFiles Array to which the filenames of included files will be prepended (referenced) + * @param bool $returnFiles When set, filenames of included files will be prepended to the array $includedFiles + * @param array $includedFiles Array to which the filenames of included files will be prepended (referenced) * @return string the unparsed TypoScript content from external files */ protected static function importExternalTypoScriptFile($filename, $cycleCounter, $returnFiles, array &$includedFiles) @@ -1077,9 +1077,9 @@ class TypoScriptParser * * @param string $filename Relative path to the typoscript file to be included * @param int $cycle_counter Counter for detecting endless loops - * @param bool $returnFiles When set, filenames of included files will be prepended to the array &$includedFiles - * @param string &$newString The output string to which the content of the file will be prepended (referenced - * @param array &$includedFiles Array to which the filenames of included files will be prepended (referenced) + * @param bool $returnFiles When set, filenames of included files will be prepended to the array $includedFiles + * @param string $newString The output string to which the content of the file will be prepended (referenced + * @param array $includedFiles Array to which the filenames of included files will be prepended (referenced) * @param string $optionalProperties * @param string $parentFilenameOrPath The parent file (with absolute path) or path for relative includes * @static @@ -1134,9 +1134,9 @@ class TypoScriptParser * * @param string $dirPath Relative path to the directory to be included * @param int $cycle_counter Counter for detecting endless loops - * @param bool $returnFiles When set, filenames of included files will be prepended to the array &$includedFiles - * @param string &$newString The output string to which the content of the file will be prepended (referenced) - * @param array &$includedFiles Array to which the filenames of included files will be prepended (referenced) + * @param bool $returnFiles When set, filenames of included files will be prepended to the array $includedFiles + * @param string $newString The output string to which the content of the file will be prepended (referenced) + * @param array $includedFiles Array to which the filenames of included files will be prepended (referenced) * @param string $optionalProperties * @param string $parentFilenameOrPath The parent file (with absolute path) or path for relative includes * @static diff --git a/typo3/sysext/core/Tests/Unit/DataHandling/Fixtures/AllowAccessHookFixture.php b/typo3/sysext/core/Tests/Unit/DataHandling/Fixtures/AllowAccessHookFixture.php index ceb6a5344809f53dc5b82e0a24c42962c73ea8c1..f516e67d9d69bc46d5e8f403a9eec7fcf6470d26 100644 --- a/typo3/sysext/core/Tests/Unit/DataHandling/Fixtures/AllowAccessHookFixture.php +++ b/typo3/sysext/core/Tests/Unit/DataHandling/Fixtures/AllowAccessHookFixture.php @@ -25,7 +25,7 @@ class AllowAccessHookFixture implements DataHandlerCheckModifyAccessListHookInte /** * Check modify access list * - * @param bool &$accessAllowed + * @param bool $accessAllowed * @param string $table * @param DataHandler $parent */ diff --git a/typo3/sysext/extbase/Classes/Configuration/AbstractConfigurationManager.php b/typo3/sysext/extbase/Classes/Configuration/AbstractConfigurationManager.php index 5d7a58a91cc611917965f6cc9d02e13ddddeff4f..a6b8e522cf204148cd1170680204947a31a00c6b 100644 --- a/typo3/sysext/extbase/Classes/Configuration/AbstractConfigurationManager.php +++ b/typo3/sysext/extbase/Classes/Configuration/AbstractConfigurationManager.php @@ -239,7 +239,7 @@ abstract class AbstractConfigurationManager implements \TYPO3\CMS\Core\Singleton * If called by \TYPO3\CMS\Extbase\Configuration\FrontendConfigurationManager::overrideSwitchableControllerActionsFromFlexForm, * $switchableControllerActions may contain an alternative controller configuration defined via plugin flexform. * - * @param array &$frameworkConfiguration + * @param array $frameworkConfiguration * @param array $switchableControllerActions * @deprecated since TYPO3 v10, will be removed in one of the next major versions of TYPO3, probably version 11.0 or 12.0. */ diff --git a/typo3/sysext/extbase/Classes/Hook/DataHandler/CheckFlexFormValue.php b/typo3/sysext/extbase/Classes/Hook/DataHandler/CheckFlexFormValue.php index b058846c1126cfcf6411c6f7d7a17ed5868df854..0f2fa56ee9ec0b2c9415b5e81ede63f4a6066519 100644 --- a/typo3/sysext/extbase/Classes/Hook/DataHandler/CheckFlexFormValue.php +++ b/typo3/sysext/extbase/Classes/Hook/DataHandler/CheckFlexFormValue.php @@ -26,8 +26,8 @@ class CheckFlexFormValue * Check flexform value before merge * * @param DataHandler $dataHander - * @param array &$currentValue - * @param array &$newValue + * @param array $currentValue + * @param array $newValue */ public function checkFlexFormValue_beforeMerge(DataHandler $dataHander, array &$currentValue, array &$newValue) { diff --git a/typo3/sysext/extbase/Classes/Persistence/Generic/Backend.php b/typo3/sysext/extbase/Classes/Persistence/Generic/Backend.php index 32a65fef8639230a9ee7b05cbf701578fc181858..e95497d80029f5d3f75450d4b4b82e40222830be 100644 --- a/typo3/sysext/extbase/Classes/Persistence/Generic/Backend.php +++ b/typo3/sysext/extbase/Classes/Persistence/Generic/Backend.php @@ -409,7 +409,7 @@ class Backend implements \TYPO3\CMS\Extbase\Persistence\Generic\BackendInterface * @param \TYPO3\CMS\Extbase\Persistence\ObjectStorage $objectStorage The object storage to be persisted. * @param \TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface $parentObject The parent object. One of the properties holds the object storage. * @param string $propertyName The name of the property holding the object storage. - * @param array &$row The row array of the parent object to be persisted. It's passed by reference and gets filled with either a comma separated list of uids (csv) or the number of contained objects. + * @param array $row The row array of the parent object to be persisted. It's passed by reference and gets filled with either a comma separated list of uids (csv) or the number of contained objects. */ protected function persistObjectStorage(\TYPO3\CMS\Extbase\Persistence\ObjectStorage $objectStorage, \TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface $parentObject, $propertyName, array &$row) { @@ -939,7 +939,7 @@ class Backend implements \TYPO3\CMS\Extbase\Persistence\Generic\BackendInterface * Adds common database fields to a row * * @param \TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface $object - * @param array &$row + * @param array $row */ protected function addCommonFieldsToRow(\TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface $object, array &$row) { @@ -957,7 +957,7 @@ class Backend implements \TYPO3\CMS\Extbase\Persistence\Generic\BackendInterface * Adjusts the common date fields of the given row to the current time * * @param \TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface $object - * @param array &$row The row to be updated + * @param array $row The row to be updated */ protected function addCommonDateFieldsToRow(\TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface $object, array &$row) { diff --git a/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/BindVariableValue.php b/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/BindVariableValue.php index 230bb28cc50c61739a161c8973e1a26c70c41868..d98a86d445876e4881681e378c671394202b2e7a 100644 --- a/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/BindVariableValue.php +++ b/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/BindVariableValue.php @@ -38,7 +38,7 @@ class BindVariableValue implements \TYPO3\CMS\Extbase\Persistence\Generic\Qom\Bi /** * Fills an array with the names of all bound variables in the operand * - * @param array &$boundVariables + * @param array $boundVariables */ public function collectBoundVariableNames(&$boundVariables) { diff --git a/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/Comparison.php b/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/Comparison.php index a9c3e525f0c2fa93cb7cf888c8e8431e7bc5dd0b..10d16c0fd9143c373c90cd84ed9e0d7bcad32a89 100644 --- a/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/Comparison.php +++ b/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/Comparison.php @@ -134,7 +134,7 @@ class Comparison implements ComparisonInterface /** * Fills an array with the names of all bound variables in the constraints * - * @param array &$boundVariables + * @param array $boundVariables */ public function collectBoundVariableNames(&$boundVariables) { diff --git a/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/ConstraintInterface.php b/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/ConstraintInterface.php index 2cc4640214aec5f753be3734d680b7f684de8f09..ecabc8bd236a9894065fc3db5232bc0ba12eb75d 100644 --- a/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/ConstraintInterface.php +++ b/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/ConstraintInterface.php @@ -25,7 +25,7 @@ interface ConstraintInterface /** * Fills an array with the names of all bound variables in the constraints * - * @param array &$boundVariables + * @param array $boundVariables */ public function collectBoundVariableNames(&$boundVariables); } diff --git a/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/LogicalAnd.php b/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/LogicalAnd.php index 467bb3684272714acd982b6e6de44d7ff881122b..d5c818648d0156b280b4a4d91ebf327b3a35a0db 100644 --- a/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/LogicalAnd.php +++ b/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/LogicalAnd.php @@ -46,7 +46,7 @@ class LogicalAnd implements AndInterface /** * Fills an array with the names of all bound variables in the constraints * - * @param array &$boundVariables + * @param array $boundVariables */ public function collectBoundVariableNames(&$boundVariables) { diff --git a/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/LogicalNot.php b/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/LogicalNot.php index e6bfc02f74be67cdde6bb29147889c76c8e8b7aa..5fab3dba9bb94c6c62a853496cc2970dd6e2bfe3 100644 --- a/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/LogicalNot.php +++ b/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/LogicalNot.php @@ -38,7 +38,7 @@ class LogicalNot implements NotInterface /** * Fills an array with the names of all bound variables in the constraint * - * @param array &$boundVariables + * @param array $boundVariables */ public function collectBoundVariableNames(&$boundVariables) { diff --git a/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/LogicalOr.php b/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/LogicalOr.php index 5d0d99731ea9932b274f915d73ea6086b7aad7dc..b11e75234f4ac039fbb132eea3f0d116e20c9d4e 100644 --- a/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/LogicalOr.php +++ b/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/LogicalOr.php @@ -48,7 +48,7 @@ class LogicalOr implements OrInterface /** * Fills an array with the names of all bound variables in the constraints * - * @param array &$boundVariables + * @param array $boundVariables */ public function collectBoundVariableNames(&$boundVariables) { diff --git a/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/Statement.php b/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/Statement.php index 8e06ddeb60bebcfc5d8a840934c63ed45619f622..27d7874f77bd284b19d03935b686dfe84e4adb1d 100644 --- a/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/Statement.php +++ b/typo3/sysext/extbase/Classes/Persistence/Generic/Qom/Statement.php @@ -65,7 +65,7 @@ class Statement implements ConstraintInterface /** * Fills an array with the names of all bound variables in the constraints * - * @param array &$boundVariables + * @param array $boundVariables */ public function collectBoundVariableNames(&$boundVariables) { diff --git a/typo3/sysext/extbase/Classes/Persistence/Generic/Storage/Typo3DbQueryParser.php b/typo3/sysext/extbase/Classes/Persistence/Generic/Storage/Typo3DbQueryParser.php index ffb5590f4cfebe60c2849ab2b7b2a883c764adc4..52a83d1434f0574893adfe869b63fb76c1452848 100644 --- a/typo3/sysext/extbase/Classes/Persistence/Generic/Storage/Typo3DbQueryParser.php +++ b/typo3/sysext/extbase/Classes/Persistence/Generic/Storage/Typo3DbQueryParser.php @@ -989,9 +989,9 @@ class Typo3DbQueryParser * adds a union statement to the query, mostly for tables referenced in the where condition. * The property for which the union statement is generated will be appended. * - * @param string &$className The name of the parent class, will be set to the child class after processing. - * @param string &$tableName The name of the parent table, will be set to the table alias that is used in the union statement. - * @param string &$propertyPath The remaining property path, will be cut of by one part during the process. + * @param string $className The name of the parent class, will be set to the child class after processing. + * @param string $tableName The name of the parent table, will be set to the table alias that is used in the union statement. + * @param string $propertyPath The remaining property path, will be cut of by one part during the process. * @param string $fullPropertyPath The full path the the current property, will be used to make table names unique. * @throws Exception * @throws InvalidRelationConfigurationException diff --git a/typo3/sysext/extbase/Classes/Property/PropertyMapper.php b/typo3/sysext/extbase/Classes/Property/PropertyMapper.php index 7c727712c65ab18fa7b7f2cc6bc4baf2ca3dcb8e..f93cf4ad04d284f13b2b320b8792a4b604d4030a 100644 --- a/typo3/sysext/extbase/Classes/Property/PropertyMapper.php +++ b/typo3/sysext/extbase/Classes/Property/PropertyMapper.php @@ -137,7 +137,7 @@ class PropertyMapper implements \TYPO3\CMS\Core\SingletonInterface * @param mixed $source the source data to map. MUST be a simple type, NO object allowed! * @param string $targetType The type of the target; can be either a class name or a simple type. * @param PropertyMappingConfigurationInterface $configuration Configuration for the property mapping. - * @param array &$currentPropertyPath The property path currently being mapped; used for knowing the context in case an exception is thrown. + * @param array $currentPropertyPath The property path currently being mapped; used for knowing the context in case an exception is thrown. * @throws Exception\TypeConverterException * @throws Exception\InvalidPropertyMappingConfigurationException * @return mixed an instance of $targetType diff --git a/typo3/sysext/extbase/Classes/Property/TypeConverter/ObjectConverter.php b/typo3/sysext/extbase/Classes/Property/TypeConverter/ObjectConverter.php index 89eded2c8d618b321e972d808b04443c5dd100be..f0020cbe48feb2a94f8de945c4434e659cfd913e 100644 --- a/typo3/sysext/extbase/Classes/Property/TypeConverter/ObjectConverter.php +++ b/typo3/sysext/extbase/Classes/Property/TypeConverter/ObjectConverter.php @@ -211,7 +211,7 @@ class ObjectConverter extends AbstractTypeConverter * constructor argument values are missing from the given array the method * looks for a default value in the constructor signature. Furthermore, the constructor arguments are removed from $possibleConstructorArgumentValues * - * @param array &$possibleConstructorArgumentValues + * @param array $possibleConstructorArgumentValues * @param string $objectType * @return object The created instance * @throws \TYPO3\CMS\Extbase\Property\Exception\InvalidTargetException if a required constructor argument is missing diff --git a/typo3/sysext/extbase/Classes/Property/TypeConverter/PersistentObjectConverter.php b/typo3/sysext/extbase/Classes/Property/TypeConverter/PersistentObjectConverter.php index e6398c439483f29a4c905c7eef1768935cd9051e..1c9ee062873d4932f07a4d51cb260b9df24e58dd 100644 --- a/typo3/sysext/extbase/Classes/Property/TypeConverter/PersistentObjectConverter.php +++ b/typo3/sysext/extbase/Classes/Property/TypeConverter/PersistentObjectConverter.php @@ -179,7 +179,7 @@ class PersistentObjectConverter extends ObjectConverter * * @param array $source * @param string $targetType - * @param array &$convertedChildProperties + * @param array $convertedChildProperties * @param \TYPO3\CMS\Extbase\Property\PropertyMappingConfigurationInterface $configuration * @return object * @throws \TYPO3\CMS\Extbase\Property\Exception\InvalidPropertyMappingConfigurationException diff --git a/typo3/sysext/extbase/Classes/Reflection/ObjectAccess.php b/typo3/sysext/extbase/Classes/Reflection/ObjectAccess.php index db2e113cde8399ab204dcf4c96146297b3094a86..afc218b47119c6f705b676131c2143027b6d8041 100644 --- a/typo3/sysext/extbase/Classes/Reflection/ObjectAccess.php +++ b/typo3/sysext/extbase/Classes/Reflection/ObjectAccess.php @@ -158,7 +158,7 @@ class ObjectAccess * on it without checking if it existed. * - else, return FALSE * - * @param mixed &$subject The target object or array + * @param mixed $subject The target object or array * @param string $propertyName Name of the property to set * @param mixed $propertyValue Value of the property * @param bool $forceDirectAccess directly access property using reflection(!) diff --git a/typo3/sysext/extensionmanager/Classes/Utility/Parser/MirrorXmlPullParser.php b/typo3/sysext/extensionmanager/Classes/Utility/Parser/MirrorXmlPullParser.php index 6eb5c99fb11cb4d9d327a40d4fc60b83647af566..2fc8addec5d6e9192b810082f0a8fd324b34439e 100644 --- a/typo3/sysext/extensionmanager/Classes/Utility/Parser/MirrorXmlPullParser.php +++ b/typo3/sysext/extensionmanager/Classes/Utility/Parser/MirrorXmlPullParser.php @@ -116,7 +116,7 @@ class MirrorXmlPullParser extends AbstractMirrorXmlParser * Method will read until it finds the end of the given element. * If element has no value, method returns NULL. * - * @param string &$elementName name of element to retrieve it's value from + * @param string $elementName name of element to retrieve it's value from * @return string an element's value if it has a value, otherwise NULL */ protected function getElementValue(&$elementName) diff --git a/typo3/sysext/scheduler/Classes/Task/ExecuteSchedulableCommandAdditionalFieldProvider.php b/typo3/sysext/scheduler/Classes/Task/ExecuteSchedulableCommandAdditionalFieldProvider.php index 60d668419215cf2b270f314805dd0743e67e3d5c..df84d8282d2ac52b3c880ffd2da2973d5e5dcb4d 100644 --- a/typo3/sysext/scheduler/Classes/Task/ExecuteSchedulableCommandAdditionalFieldProvider.php +++ b/typo3/sysext/scheduler/Classes/Task/ExecuteSchedulableCommandAdditionalFieldProvider.php @@ -66,7 +66,7 @@ class ExecuteSchedulableCommandAdditionalFieldProvider implements AdditionalFiel /** * Render additional information fields within the scheduler backend. * - * @param array &$taskInfo Array information of task to return + * @param array $taskInfo Array information of task to return * @param AbstractTask|null $task When editing, reference to the current task. NULL when adding. * @param SchedulerModuleController $schedulerModule Reference to the calling object (BE module of the Scheduler) * @return array Additional fields @@ -96,7 +96,7 @@ class ExecuteSchedulableCommandAdditionalFieldProvider implements AdditionalFiel /** * Validates additional selected fields * - * @param array &$submittedData + * @param array $submittedData * @param SchedulerModuleController $schedulerModule * @return bool */