From eaab15b01bc2b1064b9c02dc5e775e7b5d46b979 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20W=C3=BCrth?= Date: Fri, 25 Sep 2015 20:38:19 +0200 Subject: [PATCH] CS --- Console/Command/MigrationShell.php | 1 - Lib/CakeMigration.php | 2 -- Lib/MigrationVersion.php | 2 -- Lib/Panel/MigrationsPanel.php | 1 - Test/Case/Console/Command/MigrationShellTest.php | 2 -- Test/Case/Lib/Migration/PrecheckConditionTest.php | 1 - Test/Case/Lib/Model/CakeMigrationTest.php | 3 --- 7 files changed, 12 deletions(-) diff --git a/Console/Command/MigrationShell.php b/Console/Command/MigrationShell.php index 5858ad4d..99b601ea 100644 --- a/Console/Command/MigrationShell.php +++ b/Console/Command/MigrationShell.php @@ -19,7 +19,6 @@ /** * Migration shell. - * */ class MigrationShell extends AppShell { diff --git a/Lib/CakeMigration.php b/Lib/CakeMigration.php index e9be3659..65813886 100644 --- a/Lib/CakeMigration.php +++ b/Lib/CakeMigration.php @@ -13,7 +13,6 @@ /** * Base Class for Migration management - * */ class CakeMigration extends Object { @@ -637,7 +636,6 @@ public function generateModel($name, $table = null, $options = array()) { /** * Exception used when something goes wrong on migrations - * */ class MigrationException extends Exception { diff --git a/Lib/MigrationVersion.php b/Lib/MigrationVersion.php index 3364d842..abd791e9 100644 --- a/Lib/MigrationVersion.php +++ b/Lib/MigrationVersion.php @@ -18,7 +18,6 @@ /** * Migration version management. - * */ class MigrationVersion { @@ -492,7 +491,6 @@ protected function _enumerateOldMigrations($type) { /** * Usually used when migrations file/class or map files are not found - * */ class MigrationVersionException extends Exception { diff --git a/Lib/Panel/MigrationsPanel.php b/Lib/Panel/MigrationsPanel.php index 897f63d2..e98a4d87 100644 --- a/Lib/Panel/MigrationsPanel.php +++ b/Lib/Panel/MigrationsPanel.php @@ -22,7 +22,6 @@ * 'panels' => array('Migrations.migrations') * )); * @@@ - * */ class MigrationsPanel extends DebugPanel { diff --git a/Test/Case/Console/Command/MigrationShellTest.php b/Test/Case/Console/Command/MigrationShellTest.php index 3800c6d6..acb6fc2f 100644 --- a/Test/Case/Console/Command/MigrationShellTest.php +++ b/Test/Case/Console/Command/MigrationShellTest.php @@ -14,7 +14,6 @@ /** * TestMigrationShell - * */ class TestMigrationShell extends MigrationShell { @@ -64,7 +63,6 @@ public function writeMigration($name, $class, $migration) { /** * MigrationShellTest - * */ class MigrationShellTest extends CakeTestCase { diff --git a/Test/Case/Lib/Migration/PrecheckConditionTest.php b/Test/Case/Lib/Migration/PrecheckConditionTest.php index 51cf0124..71c317d7 100644 --- a/Test/Case/Lib/Migration/PrecheckConditionTest.php +++ b/Test/Case/Lib/Migration/PrecheckConditionTest.php @@ -14,7 +14,6 @@ /** * TestPrecheckCakeMigration - * */ class TestPrecheckCakeMigration extends CakeMigration { diff --git a/Test/Case/Lib/Model/CakeMigrationTest.php b/Test/Case/Lib/Model/CakeMigrationTest.php index d7bc15a1..78113be0 100644 --- a/Test/Case/Lib/Model/CakeMigrationTest.php +++ b/Test/Case/Lib/Model/CakeMigrationTest.php @@ -14,7 +14,6 @@ /** * TestCakeMigration - * */ class TestCakeMigration extends CakeMigration { @@ -28,7 +27,6 @@ class TestCakeMigration extends CakeMigration { /** * TestCallbackCakeMigration - * */ class TestCallbackCakeMigration { @@ -89,7 +87,6 @@ public function afterAction(&$Migration, $type, $data) { /** * CakeMigrationTest - * */ class CakeMigrationTest extends CakeTestCase {