Spot\Entity\Manager::computeIndexName PHP Метод

computeIndexName() приватный Метод

Attempt to generate a user-suffixed index name
private computeIndexName ( string $table, string | boolean $indexConfiguration ) : string | boolean
$table string
$indexConfiguration string | boolean
Результат string | boolean
    private function computeIndexName($table, $indexConfiguration)
    {
        if (is_string($indexConfiguration)) {
            // Index name based on user-defined configuration
            return $table . '_' . $indexConfiguration;
        }
        return false;
    }