Imbo\Storage\Doctrine::getTableName PHP Метод

getTableName() защищенный Метод

Method that can be overridden to dynamically select table names based on the user and the image identifier. The default implementation does not use them for anything, and simply returns the default table name.
protected getTableName ( string $user, string $imageIdentifier ) : string
$user string The user which the image belongs to
$imageIdentifier string The image identifier to fetch
Результат string Returns a table name where the image is located
    protected function getTableName($user, $imageIdentifier)
    {
        return $this->tableName;
    }