Repository: providesValueConversion() should not be required being called

refs #8826
This commit is contained in:
Johannes Meyer 2015-05-29 11:57:38 +02:00
parent b82d7d7cc0
commit cc779024fe
1 changed files with 4 additions and 0 deletions

View File

@ -467,6 +467,10 @@ abstract class Repository implements Selectable
protected function getConverter($table, $name, $context)
{
$conversionRules = $this->getConversionRules();
if (! isset($conversionRules[$table])) {
return;
}
$tableRules = $conversionRules[$table];
// Check for a conversion method for the alias/column first