Completed
Pull Request — master (#20)
by Pavel
03:20
created

GenerateMigrationCommand::execute()   B

Complexity

Conditions 2
Paths 1

Size

Total Lines 32
Code Lines 20

Duplication

Lines 32
Ratio 100 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 32
loc 32
rs 8.8571
cc 2
eloc 20
nc 1
nop 2
1
<?php
2
3
namespace App\Console\Commands;
4
5
use App\Common\Helper;
6
use App\Console\Traits\CodeGenerate;
7
use Symfony\Component\Console\Command\Command;
8
use Symfony\Component\Console\Input\InputInterface;
9
use Symfony\Component\Console\Output\OutputInterface;
10
use Symfony\Component\Console\Question\Question;
11
12
/**
13
 * GenerateMigrationCommand
14
 */
15
class GenerateMigrationCommand extends Command
16
{
17
    use CodeGenerate;
18
19
    /**
20
     * Configuration of command
21
     */
22
    protected function configure()
23
    {
24
        $this
25
            ->setName('generate:migration')
26
            ->setDescription('Generate new migration')
27
            ->setHelp('php partisan generate:migration</info>')
28
        ;
29
    }
30
31
    /**
32
     * Execute method of command
33
     *
34
     * @param InputInterface $input
35
     * @param OutputInterface $output
36
     * @return int|null|void
37
     * @throws \Exception
38
     */
39 View Code Duplication
    protected function execute(InputInterface $input, OutputInterface $output)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
40
    {
41
        $output->writeln(['<comment>Welcome to the migration generator</comment>']);
42
43
        $helper   = $this->getHelper('question');
44
        $question = new Question('<info>Please enter the name of the migration: </info>');
45
        $question->setValidator(function($answer) {
46
            if (strlen(trim($answer)) === 0) {
47
                throw new \RunTimeException('The name of the migration should be not empty');
48
            }
49
50
            return $answer;
51
        });
52
53
        $migrationName = $helper->ask($input, $output, $question);
54
        $baseName      = date('YmdHis').'_'.$migrationName.'.php';
55
        $path          = $this->getPath($baseName, MIGRATIONS_PATH);
56
        $placeHolders  = [
57
            '<class>',
58
            '<tableName>',
59
        ];
60
        $replacements  = [
61
            Helper::underscoreToCamelCase($migrationName, true),
62
            strtolower($migrationName),
63
        ];
64
65
        $this->generateCode($placeHolders, $replacements, 'MigrationTemplate.tpl', $path);
66
67
        $output->writeln(sprintf('Generated new migration class to "<info>%s</info>"', realpath($path)));
68
69
        return;
70
    }
71
}
72