diff --git a/Command/DatabaseCreateCommand.php b/Command/DatabaseCreateCommand.php index 023d0fa..060aaaf 100644 --- a/Command/DatabaseCreateCommand.php +++ b/Command/DatabaseCreateCommand.php @@ -62,7 +62,7 @@ class DatabaseCreateCommand extends AbstractCommand $output->writeln(sprintf('Database %s has been created.', $dbName)); } catch (\Exception $e) { $this->writeSection($output, array( - '[Propel] Exception catched', + '[Propel] Exception caught', '', $e->getMessage() ), 'fg=white;bg=red'); diff --git a/Command/DatabaseDropCommand.php b/Command/DatabaseDropCommand.php index 891c6cc..4f332ad 100644 --- a/Command/DatabaseDropCommand.php +++ b/Command/DatabaseDropCommand.php @@ -82,7 +82,7 @@ EOT $output->writeln(sprintf('Database %s has been dropped.', $dbName)); } catch (\Exception $e) { $this->writeSection($output, array( - '[Propel] Exception catched', + '[Propel] Exception caught', '', $e->getMessage() ), 'fg=white;bg=red'); diff --git a/Command/TableDropCommand.php b/Command/TableDropCommand.php index f3f6342..2511606 100644 --- a/Command/TableDropCommand.php +++ b/Command/TableDropCommand.php @@ -119,7 +119,7 @@ EOT } catch (\Exception $e) { $this->writeSection($output, array( - '[Propel] Exception catched', + '[Propel] Exception caught', '', $e->getMessage() ), 'fg=white;bg=red');