Doctrine\DBAL\Migrations\Configuration\Connection\Loader\ConnectionConfigurationLoader::chosen PHP Method

chosen() public method

read the input and return a Configuration, returns false if the config is not supported
public chosen ( ) : Doctrine\DBAL\Connection | null
return Doctrine\DBAL\Connection | null
    public function chosen()
    {
        if ($this->configuration) {
            return $this->configuration->getConnection();
        }
        return null;
    }
ConnectionConfigurationLoader