Imbo\Storage\Doctrine::getTableName PHP Method

getTableName() protected method

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
return string Returns a table name where the image is located
    protected function getTableName($user, $imageIdentifier)
    {
        return $this->tableName;
    }