Actions
Task #67248
closedClean up DataMapper::convertClassNameToTableName
Status:
Closed
Priority:
Should have
Assignee:
Category:
Code Cleanup
Target version:
Start date:
2015-06-02
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
The source of DataMapper::
currently reads:
public function convertClassNameToTableName($className = NULL) { if ($className !== NULL) { $tableName = $this->getDataMap($className)->getTableName(); } else { $tableName = strtolower($className); } return $tableName; }
This is pointless since every non-NULL
value returns the table name from a matching DataMap
and every NULL
value is processed with strtolower
. This should be removed.
It also does not make sense to make the $className
parameter optional.
Actions