Passed
Push — develop ( 5d1d2f...3f87f8 )
by nguereza
02:43
created
src/Migration/Seed/Command/AbstractSeedCommand.php 1 patch
Braces   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -64,8 +64,7 @@  discard block
 block discarded – undo
64 64
  * @package Platine\Framework\Migration\Seed\Command
65 65
  * @template T
66 66
  */
67
-abstract class AbstractSeedCommand extends Command
68
-{
67
+abstract class AbstractSeedCommand extends Command {
69 68
 
70 69
     /**
71 70
      * The configuration to use
@@ -195,7 +194,7 @@  discard block
 block discarded – undo
195 194
     protected function getSeedClassName(string $description): string
196 195
     {
197 196
         $desc = Str::camel($description, false);
198
-        if(!Str::endsWith('Seed', $desc)){
197
+        if(!Str::endsWith('Seed', $desc)) {
199 198
             $desc .= 'Seed';
200 199
         }
201 200
         return $desc;
Please login to merge, or discard this patch.
src/Migration/Seed/Command/SeedCreateCommand.php 1 patch
Braces   +2 added lines, -23 removed lines patch added patch discarded remove patch
@@ -61,8 +61,7 @@  discard block
 block discarded – undo
61 61
  * @template T
62 62
  * @extends AbstractSeedCommand<T>
63 63
  */
64
-class SeedCreateCommand extends AbstractSeedCommand
65
-{
64
+class SeedCreateCommand extends AbstractSeedCommand {
66 65
 
67 66
     /**
68 67
      * The seed name
@@ -89,8 +88,7 @@  discard block
 block discarded – undo
89 88
     /**
90 89
      * {@inheritodc}
91 90
      */
92
-    public function execute()
93
-    {
91
+    public function execute() {
94 92
         $writer = $this->io()->writer();
95 93
 
96 94
         $className = $this->getSeedClassName($this->name);
@@ -157,22 +155,3 @@  discard block
 block discarded – undo
157 155
     private function getTemplateClass(): string
158 156
     {
159 157
         return <<<EOF
160
-        <?php
161
-        declare(strict_types=1);
162
-        
163
-        namespace Platine\Framework\Migration\Seed;
164
-
165
-        use Platine\Framework\Migration\Seed\AbstractSeed;
166
-
167
-        class %classname% extends AbstractSeed
168
-        {
169
-
170
-            public function run(): void
171
-            {
172
-              //Action when run the seed
173
-
174
-            }
175
-        }
176
-        EOF;
177
-    }
178
-}
Please login to merge, or discard this patch.
src/Migration/Command/MigrationCreateCommand.php 1 patch
Braces   +2 added lines, -29 removed lines patch added patch discarded remove patch
@@ -61,8 +61,7 @@  discard block
 block discarded – undo
61 61
  * @template T
62 62
  * @extends AbstractCommand<T>
63 63
  */
64
-class MigrationCreateCommand extends AbstractCommand
65
-{
64
+class MigrationCreateCommand extends AbstractCommand {
66 65
 
67 66
     /**
68 67
      * The migration name
@@ -90,8 +89,7 @@  discard block
 block discarded – undo
90 89
     /**
91 90
      * {@inheritodc}
92 91
      */
93
-    public function execute()
94
-    {
92
+    public function execute() {
95 93
         $writer = $this->io()->writer();
96 94
 
97 95
         $version = date('Ymd_His');
@@ -161,28 +159,3 @@  discard block
 block discarded – undo
161 159
     private function getTemplateClass(): string
162 160
     {
163 161
         return <<<EOF
164
-        <?php
165
-        declare(strict_types=1);
166
-        
167
-        namespace Platine\Framework\Migration;
168
-
169
-        use Platine\Framework\Migration\AbstractMigration;
170
-
171
-        class %classname% extends AbstractMigration
172
-        {
173
-
174
-            public function up(): void
175
-            {
176
-              //Action when migrate up
177
-
178
-            }
179
-
180
-            public function down(): void
181
-            {
182
-              //Action when migrate down
183
-
184
-            }
185
-        }
186
-        EOF;
187
-    }
188
-}
Please login to merge, or discard this patch.