Skip to content

Commit

Permalink
Corrected lfor lint
Browse files Browse the repository at this point in the history
  • Loading branch information
roberto-maldonado committed Mar 17, 2017
1 parent 002c695 commit 64c1866
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ORM/Behavior/TranslateBehavior.php
Expand Up @@ -436,7 +436,7 @@ public function locale($locale = null)
public function translationField($field)
{
$table = $this->_table;
if($this->locale() === $this->getConfig('defaultLocale')) {
if ($this->locale() === $this->getConfig('defaultLocale')) {
return $table->aliasField($field);
}
$associationName = $table->getAlias() . '_' . $field . '_translation';
Expand Down

0 comments on commit 64c1866

Please sign in to comment.