Re-PSR2ing the generated model base classes.

This commit is contained in:
Dan Cryer 2014-05-01 17:03:48 +01:00
commit 7819493882
4 changed files with 0 additions and 93 deletions

View file

@ -273,26 +273,4 @@ class UserBase extends Model
$this->_setModified('name');
}
public static function getByPrimaryKey($value, $useConnection = 'read')
{
return Factory::getStore('User', 'PHPCI')->getByPrimaryKey($value, $useConnection);
}
public static function getById($value, $useConnection = 'read')
{
return Factory::getStore('User', 'PHPCI')->getById($value, $useConnection);
}
public static function getByEmail($value, $useConnection = 'read')
{
return Factory::getStore('User', 'PHPCI')->getByEmail($value, $useConnection);
}
}