FactoryGirl\Provider\Doctrine\ORM\Locking\TableLock::getTableAliasGuesstimates PHP Method

getTableAliasGuesstimates() private method

Attempt to guess at the table name aliases used by Doctrine for a given table name
private getTableAliasGuesstimates ( string $tableName ) : array
$tableName string
return array
    private function getTableAliasGuesstimates($tableName)
    {
        return array_unique(array(strtolower(substr($tableName, 0, 1)) . '0', 't0'));
    }