Commit 118d7f9a authored by Marco Pivetta's avatar Marco Pivetta Committed by GitHub

Merge pull request #2800 from tolbon/ReturnType

Fix inconsistent/missing return statements
parents 4f7c1b72 adc570e9
......@@ -303,6 +303,8 @@ class SQLAnywherePlatform extends AbstractPlatform
return $columnAlterationClause;
}
return null;
}
/**
......
......@@ -19,11 +19,11 @@
namespace Doctrine\DBAL\Tools\Console\Command;
use Symfony\Component\Console\Input\InputOption;
use Doctrine\DBAL\Platforms\Keywords\ReservedKeywordsValidator;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
use Doctrine\DBAL\Platforms\Keywords\ReservedKeywordsValidator;
class ReservedWordsCommand extends Command
{
......@@ -168,5 +168,7 @@ EOT
return 1;
}
return 0;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment