Commit adc570e9 authored by Jean-Baptiste Noblot's avatar Jean-Baptiste Noblot

Fix inconsistent return

parent 5cefa4d9
...@@ -303,6 +303,8 @@ class SQLAnywherePlatform extends AbstractPlatform ...@@ -303,6 +303,8 @@ class SQLAnywherePlatform extends AbstractPlatform
return $columnAlterationClause; return $columnAlterationClause;
} }
return null;
} }
/** /**
......
...@@ -19,11 +19,11 @@ ...@@ -19,11 +19,11 @@
namespace Doctrine\DBAL\Tools\Console\Command; 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\Command\Command;
use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Output\OutputInterface;
use Doctrine\DBAL\Platforms\Keywords\ReservedKeywordsValidator;
class ReservedWordsCommand extends Command class ReservedWordsCommand extends Command
{ {
...@@ -168,5 +168,7 @@ EOT ...@@ -168,5 +168,7 @@ EOT
return 1; 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