Repository: providesValueConversion() should not be required being called
refs #8826
This commit is contained in:
parent
b82d7d7cc0
commit
cc779024fe
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue