From c2a0d220879ba7a2726063eb693ac881405fc2ba Mon Sep 17 00:00:00 2001 From: thomasbeaujean Date: Thu, 24 Jan 2019 14:41:31 +0100 Subject: [PATCH] add missing semicolon --- Command/DiffFileCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Command/DiffFileCommand.php b/Command/DiffFileCommand.php index 67a4c8b..a36a9b2 100644 --- a/Command/DiffFileCommand.php +++ b/Command/DiffFileCommand.php @@ -21,7 +21,7 @@ protected function configure() { parent::configure(); - $this->addOption('check', null, InputOption::VALUE_NONE, 'Check that all migrations have been created.') + $this->addOption('check', null, InputOption::VALUE_NONE, 'Check that all migrations have been created.'); } /**