diff --git a/Command/MigrationsExecuteDoctrineCommand.php b/Command/MigrationsExecuteDoctrineCommand.php deleted file mode 100644 index 0398984..0000000 --- a/Command/MigrationsExecuteDoctrineCommand.php +++ /dev/null @@ -1,34 +0,0 @@ - - * - * @deprecated will be removed in version 2.0 - */ -class MigrationsExecuteDoctrineCommand extends MigrationsExecuteCommand -{ - protected function configure() - { - parent::configure(); - - $replacement = str_replace('Doctrine', '', __CLASS__); - $notice = sprintf( - '%s is deprecated and will be removed in 2.0. Use %s instead', - __CLASS__, - $replacement - ); - - @trigger_error($notice, E_USER_DEPRECATED); - } -} diff --git a/Command/MigrationsGenerateDoctrineCommand.php b/Command/MigrationsGenerateDoctrineCommand.php deleted file mode 100644 index 02991e9..0000000 --- a/Command/MigrationsGenerateDoctrineCommand.php +++ /dev/null @@ -1,34 +0,0 @@ - - * - * @deprecated will be removed in version 2.0 - */ -class MigrationsGenerateDoctrineCommand extends MigrationsGenerateCommand -{ - protected function configure() - { - parent::configure(); - - $replacement = str_replace('Doctrine', '', __CLASS__); - $notice = sprintf( - '%s is deprecated and will be removed in 2.0. Use %s instead', - __CLASS__, - $replacement - ); - - @trigger_error($notice, E_USER_DEPRECATED); - } -} diff --git a/Command/MigrationsMigrateDoctrineCommand.php b/Command/MigrationsMigrateDoctrineCommand.php deleted file mode 100644 index 6b8f02d..0000000 --- a/Command/MigrationsMigrateDoctrineCommand.php +++ /dev/null @@ -1,34 +0,0 @@ - - * - * @deprecated will be removed in version 2.0 - */ -class MigrationsMigrateDoctrineCommand extends MigrationsMigrateCommand -{ - protected function configure() - { - parent::configure(); - - $replacement = str_replace('Doctrine', '', __CLASS__); - $notice = sprintf( - '%s is deprecated and will be removed in 2.0. Use %s instead', - __CLASS__, - $replacement - ); - - @trigger_error($notice, E_USER_DEPRECATED); - } -} diff --git a/Command/MigrationsStatusDoctrineCommand.php b/Command/MigrationsStatusDoctrineCommand.php deleted file mode 100644 index 57c08cd..0000000 --- a/Command/MigrationsStatusDoctrineCommand.php +++ /dev/null @@ -1,34 +0,0 @@ - - * - * @deprecated will be removed in version 2.0 - */ -class MigrationsStatusDoctrineCommand extends MigrationsStatusCommand -{ - protected function configure() - { - parent::configure(); - - $replacement = str_replace('Doctrine', '', __CLASS__); - $notice = sprintf( - '%s is deprecated and will be removed in 2.0. Use %s instead', - __CLASS__, - $replacement - ); - - @trigger_error($notice, E_USER_DEPRECATED); - } -} diff --git a/Command/MigrationsVersionDoctrineCommand.php b/Command/MigrationsVersionDoctrineCommand.php deleted file mode 100644 index a304f35..0000000 --- a/Command/MigrationsVersionDoctrineCommand.php +++ /dev/null @@ -1,34 +0,0 @@ - - * - * @deprecated will be removed in version 2.0 - */ -class MigrationsVersionDoctrineCommand extends MigrationsVersionCommand -{ - protected function configure() - { - parent::configure(); - - $replacement = str_replace('Doctrine', '', __CLASS__); - $notice = sprintf( - '%s is deprecated and will be removed in 2.0. Use %s instead', - __CLASS__, - $replacement - ); - - @trigger_error($notice, E_USER_DEPRECATED); - } -}