Test Failed
Push — develop ( 0ede07...29e3d8 )
by nguereza
02:43
created
src/Migration/Command/MigrationCreateCommand.php 1 patch
Switch Indentation   -23 removed lines patch added patch discarded remove patch
@@ -159,26 +159,3 @@
 block discarded – undo
159 159
     private function getTemplateClass(): string
160 160
     {
161 161
         return <<<EOF
162
-        <?php
163
-        namespace Platine\Framework\Migration;
164
-
165
-        use Platine\Framework\Migration\AbstractMigration;
166
-
167
-        class %classname% extends AbstractMigration
168
-        {
169
-
170
-            public function up(): void
171
-            {
172
-              //Action when migrate up
173
-
174
-            }
175
-
176
-            public function down(): void
177
-            {
178
-              //Action when migrate down
179
-
180
-            }
181
-        }
182
-        EOF;
183
-    }
184
-}
Please login to merge, or discard this patch.
src/Migration/Seed/Command/SeedCreateCommand.php 1 patch
Switch Indentation   -17 removed lines patch added patch discarded remove patch
@@ -157,20 +157,3 @@
 block discarded – undo
157 157
     private function getTemplateClass(): string
158 158
     {
159 159
         return <<<EOF
160
-        <?php
161
-        namespace Platine\Framework\Migration\Seed;
162
-
163
-        use Platine\Framework\Migration\Seed\AbstractSeed;
164
-
165
-        class %classname% extends AbstractSeed
166
-        {
167
-
168
-            public function run(): void
169
-            {
170
-              //Action when run the seed
171
-
172
-            }
173
-        }
174
-        EOF;
175
-    }
176
-}
Please login to merge, or discard this patch.