Actions
Bug #61569
closedFix typo in comment (method header)
Status:
Closed
Priority:
Could have
Assignee:
-
Category:
Extbase
Target version:
-
Start date:
2014-09-14
Due date:
% Done:
100%
Estimated time:
0.25 h
TYPO3 Version:
6.2
PHP Version:
Tags:
Complexity:
no-brainer
Is Regression:
No
Sprint Focus:
Description
Fix minor typo in the method description (comment) in class TYPO3\CMS\Extbase\Persistence\Generic\Query.php
/** * Performs a logical conjunction of the given constraints. * The method takes one or more contraints and concatenates them with a boolean AND. * It also scepts a single array of constraints to be concatenated. * * @param mixed $constraint1 The first of multiple constraints or an array of constraints. * @throws Exception\InvalidNumberOfConstraintsException * @return \TYPO3\CMS\Extbase\Persistence\Generic\Qom\AndInterface * @api */ public function logicalAnd($constraint1) { ... }
...should read: The method takes one or more constraints and concatenates them... (constraints with letter "s", rather than "contraints").
Actions