Completed
Pull Request — master (#109)
by Sébastien
01:32
created

MigrateGenerateCommand   A

Complexity

Total Complexity 34

Size/Duplication

Total Lines 373
Duplicated Lines 5.9 %

Coupling/Cohesion

Components 1
Dependencies 6

Importance

Changes 0
Metric Value
wmc 34
lcom 1
cbo 6
dl 22
loc 373
rs 9.2
c 0
b 0
f 0

15 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 15 1
C fire() 0 45 7
A askYn() 0 7 2
B askNumeric() 0 18 6
A generateTablesAndIndices() 10 10 2
A generateForeignKeys() 12 12 2
A generate() 0 11 3
A getFileGenerationPath() 0 8 1
A getDatePrefix() 0 4 1
A getTemplateData() 0 18 3
A getTemplatePath() 0 4 1
A getArguments() 0 6 1
A getOptions() 0 12 1
A removeExcludedTables() 0 7 1
A getExcludedTables() 0 10 2

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php namespace Xethron\MigrationsGenerator;
2
3
use Way\Generators\Commands\GeneratorCommand;
4
use Symfony\Component\Console\Input\InputOption;
5
use Symfony\Component\Console\Input\InputArgument;
6
7
use Way\Generators\Generator;
8
use Way\Generators\Filesystem\Filesystem;
9
use Way\Generators\Compilers\TemplateCompiler;
10
use Illuminate\Database\Migrations\MigrationRepositoryInterface;
11
12
use Xethron\MigrationsGenerator\Generators\SchemaGenerator;
13
use Xethron\MigrationsGenerator\Syntax\AddToTable;
14
use Xethron\MigrationsGenerator\Syntax\DroppedTable;
15
use Xethron\MigrationsGenerator\Syntax\AddForeignKeysToTable;
16
use Xethron\MigrationsGenerator\Syntax\RemoveForeignKeysFromTable;
17
18
use Illuminate\Config\Repository as Config;
19
20
class MigrateGenerateCommand extends GeneratorCommand {
21
22
	/**
23
	 * The console command name.
24
	 * @var string
25
	 */
26
	protected $name = 'migrate:generate';
27
28
	/**
29
	 * The console command description.
30
	 * @var string
31
	 */
32
	protected $description = 'Generate a migration from an existing table structure.';
33
34
	/**
35
	 * @var \Way\Generators\Filesystem\Filesystem
36
	 */
37
	protected $file;
38
39
	/**
40
	 * @var \Way\Generators\Compilers\TemplateCompiler
41
	 */
42
	protected $compiler;
43
44
	/**
45
	 * @var \Illuminate\Database\Migrations\MigrationRepositoryInterface  $repository
46
	 */
47
	protected $repository;
48
49
	/**
50
	 * @var \Illuminate\Config\Repository  $config
51
	 */
52
	protected $config;
53
54
	/**
55
	 * @var \Xethron\MigrationsGenerator\Generators\SchemaGenerator
56
	 */
57
	protected $schemaGenerator;
58
59
	/**
60
	 * Array of Fields to create in a new Migration
61
	 * Namely: Columns, Indexes and Foreign Keys
62
	 * @var array
63
	 */
64
	protected $fields = array();
65
66
	/**
67
	 * List of Migrations that has been done
68
	 * @var array
69
	 */
70
	protected $migrations = array();
71
72
	/**
73
	 * @var bool
74
	 */
75
	protected $log = false;
76
77
	/**
78
	 * @var int
79
	 */
80
	protected $batch;
81
82
	/**
83
	 * Filename date prefix (Y_m_d_His)
84
	 * @var string
85
	 */
86
	protected $datePrefix;
87
88
	/**
89
	 * @var string
90
	 */
91
	protected $migrationName;
92
93
	/**
94
	 * @var string
95
	 */
96
	protected $method;
97
98
	/**
99
	 * @var string
100
	 */
101
	protected $table;
102
103
    /**
104
     * @var string|null
105
     */
106
    protected $connection = null;
107
108
    /**
109
	 * @param \Way\Generators\Generator  $generator
110
	 * @param \Way\Generators\Filesystem\Filesystem  $file
111
	 * @param \Way\Generators\Compilers\TemplateCompiler  $compiler
112
	 * @param \Illuminate\Database\Migrations\MigrationRepositoryInterface  $repository
113
	 * @param \Illuminate\Config\Repository  $config
114
	 */
115
	public function __construct(
116
		Generator $generator,
117
		Filesystem $file,
118
		TemplateCompiler $compiler,
119
		MigrationRepositoryInterface $repository,
120
		Config $config
121
	)
122
	{
123
		$this->file = $file;
124
		$this->compiler = $compiler;
125
		$this->repository = $repository;
126
		$this->config = $config;
127
128
		parent::__construct( $generator );
129
	}
130
131
	/**
132
	 * Execute the console command.
133
	 *
134
	 * @return void
135
	 */
136
	public function fire()
137
	{
138
		$this->info( 'Using connection: '. $this->option( 'connection' ) ."\n" );
139
        if ($this->option('connection') !== $this->config->get('database.default')) {
140
            $this->connection = $this->option('connection');
0 ignored issues
show
Documentation Bug introduced by
It seems like $this->option('connection') can also be of type array. However, the property $connection is declared as type string|null. Maybe add an additional type check?

Our type inference engine has found a suspicous assignment of a value to a property. This check raises an issue when a value that can be of a mixed type is assigned to a property that is type hinted more strictly.

For example, imagine you have a variable $accountId that can either hold an Id object or false (if there is no account id yet). Your code now assigns that value to the id property of an instance of the Account class. This class holds a proper account, so the id value must no longer be false.

Either this assignment is in error or a type check should be added for that assignment.

class Id
{
    public $id;

    public function __construct($id)
    {
        $this->id = $id;
    }

}

class Account
{
    /** @var  Id $id */
    public $id;
}

$account_id = false;

if (starsAreRight()) {
    $account_id = new Id(42);
}

$account = new Account();
if ($account instanceof Id)
{
    $account->id = $account_id;
}
Loading history...
141
        }
142
		$this->schemaGenerator = new SchemaGenerator(
143
			$this->option('connection'),
144
			$this->option('defaultIndexNames'),
145
			$this->option('defaultFKNames')
146
		);
147
148
		if ( $this->argument( 'tables' ) ) {
149
			$tables = explode( ',', $this->argument( 'tables' ) );
150
		} elseif ( $this->option('tables') ) {
151
			$tables = explode( ',', $this->option( 'tables' ) );
152
		} else {
153
			$tables = $this->schemaGenerator->getTables();
154
		}
155
156
		$tables = $this->removeExcludedTables($tables);
157
		$this->info( 'Generating migrations for: '. implode( ', ', $tables ) );
158
159
		if (!$this->option( 'no-interaction' )) {
160
			$this->log = $this->askYn('Do you want to log these migrations in the migrations table?');
161
		}
162
163
		if ( $this->log ) {
164
			$this->repository->setSource( $this->option( 'connection' ) );
165
			if ( ! $this->repository->repositoryExists() ) {
166
				$options = array('--database' => $this->option( 'connection' ) );
167
				$this->call('migrate:install', $options);
168
			}
169
			$batch = $this->repository->getNextBatchNumber();
170
			$this->batch = $this->askNumeric( 'Next Batch Number is: '. $batch .'. We recommend using Batch Number 0 so that it becomes the "first" migration', 0 );
0 ignored issues
show
Documentation Bug introduced by
It seems like $this->askNumeric('Next ... "first" migration', 0) can also be of type double or string. However, the property $batch is declared as type integer. Maybe add an additional type check?

Our type inference engine has found a suspicous assignment of a value to a property. This check raises an issue when a value that can be of a mixed type is assigned to a property that is type hinted more strictly.

For example, imagine you have a variable $accountId that can either hold an Id object or false (if there is no account id yet). Your code now assigns that value to the id property of an instance of the Account class. This class holds a proper account, so the id value must no longer be false.

Either this assignment is in error or a type check should be added for that assignment.

class Id
{
    public $id;

    public function __construct($id)
    {
        $this->id = $id;
    }

}

class Account
{
    /** @var  Id $id */
    public $id;
}

$account_id = false;

if (starsAreRight()) {
    $account_id = new Id(42);
}

$account = new Account();
if ($account instanceof Id)
{
    $account->id = $account_id;
}
Loading history...
171
		}
172
173
		$this->info( "Setting up Tables and Index Migrations" );
174
		$this->datePrefix = date( 'Y_m_d_His' );
175
		$this->generateTablesAndIndices( $tables );
176
		$this->info( "\nSetting up Foreign Key Migrations\n" );
177
		$this->datePrefix = date( 'Y_m_d_His', strtotime( '+1 second' ) );
178
		$this->generateForeignKeys( $tables );
179
		$this->info( "\nFinished!\n" );
180
	}
181
182
	/**
183
	 * Ask for user input: Yes/No
184
	 * @param  string $question Question to ask
185
	 * @return boolean          Answer from user
186
	 */
187
	protected function askYn( $question ) {
188
		$answer = $this->ask( $question .' [Y/n] ');
189
		while ( ! in_array( strtolower( $answer ), [ 'y', 'n', 'yes', 'no' ] ) ) {
190
			$answer = $this->ask('Please choose either yes or no. ');
191
		}
192
		return in_array( strtolower( $answer ), [ 'y', 'yes' ] );
193
	}
194
195
	/**
196
	 * Ask user for a Numeric Value, or blank for default
197
	 * @param  string    $question Question to ask
198
	 * @param  int|float $default  Default Value (optional)
199
	 * @return int|float           Answer
200
	 */
201
	protected function askNumeric( $question, $default = null ) {
202
		$ask = 'Your answer needs to be a numeric value';
203
204
		if ( ! is_null( $default ) ) {
205
			$question .= ' [Default: '. $default .'] ';
206
			$ask .= ' or blank for default';
207
		}
208
209
		$answer = $this->ask( $question );
210
211
		while ( ! is_numeric( $answer ) and ! ( $answer == '' and ! is_null( $default ) ) ) {
212
			$answer = $this->ask( $ask .'. ');
213
		}
214
		if ( $answer == '' ) {
215
			$answer = $default;
216
		}
217
		return $answer;
218
	}
219
220
	/**
221
	 * Generate tables and index migrations.
222
	 *
223
	 * @param  array $tables List of tables to create migrations for
224
	 * @return void
225
	 */
226 View Code Duplication
	protected function generateTablesAndIndices( array $tables )
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...
227
	{
228
		$this->method = 'create';
229
230
		foreach ( $tables as $table ) {
231
			$this->table = $table;
232
			$this->migrationName = 'create_'. $this->table .'_table';
233
			$this->fields = $this->schemaGenerator->getFields( $this->table );
0 ignored issues
show
Documentation Bug introduced by
It seems like $this->schemaGenerator->getFields($this->table) can also be of type false. However, the property $fields is declared as type array. Maybe add an additional type check?

Our type inference engine has found a suspicous assignment of a value to a property. This check raises an issue when a value that can be of a mixed type is assigned to a property that is type hinted more strictly.

For example, imagine you have a variable $accountId that can either hold an Id object or false (if there is no account id yet). Your code now assigns that value to the id property of an instance of the Account class. This class holds a proper account, so the id value must no longer be false.

Either this assignment is in error or a type check should be added for that assignment.

class Id
{
    public $id;

    public function __construct($id)
    {
        $this->id = $id;
    }

}

class Account
{
    /** @var  Id $id */
    public $id;
}

$account_id = false;

if (starsAreRight()) {
    $account_id = new Id(42);
}

$account = new Account();
if ($account instanceof Id)
{
    $account->id = $account_id;
}
Loading history...
234
		}
235
	}
236
237
	/**
238
	 * Generate foreign key migrations.
239
	 *
240
	 * @param  array $tables List of tables to create migrations for
241
	 * @return void
242
	 */
243 View Code Duplication
	protected function generateForeignKeys( array $tables )
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...
244
	{
245
		$this->method = 'table';
246
247
		foreach ( $tables as $table ) {
248
			$this->table = $table;
249
			$this->migrationName = 'add_foreign_keys_to_'. $this->table .'_table';
250
			$this->fields = $this->schemaGenerator->getForeignKeyConstraints( $this->table );
251
252
			$this->generate();
253
		}
254
	}
255
256
	/**
257
	 * Generate Migration for the current table.
258
	 *
259
	 * @return void
260
	 */
261
	protected function generate()
262
	{
263
		if ( $this->fields ) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $this->fields of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
264
			parent::fire();
0 ignored issues
show
Comprehensibility Bug introduced by
It seems like you call parent on a different method (fire() instead of generate()). Are you sure this is correct? If so, you might want to change this to $this->fire().

This check looks for a call to a parent method whose name is different than the method from which it is called.

Consider the following code:

class Daddy
{
    protected function getFirstName()
    {
        return "Eidur";
    }

    protected function getSurName()
    {
        return "Gudjohnsen";
    }
}

class Son
{
    public function getFirstName()
    {
        return parent::getSurname();
    }
}

The getFirstName() method in the Son calls the wrong method in the parent class.

Loading history...
265
266
			if ( $this->log ) {
267
				$file = $this->datePrefix . '_' . $this->migrationName;
268
				$this->repository->log($file, $this->batch);
269
			}
270
		}
271
	}
272
273
	/**
274
	 * The path where the file will be created
275
	 *
276
	 * @return string
277
	 */
278
	protected function getFileGenerationPath()
279
	{
280
		$path = $this->getPathByOptionOrConfig( 'path', 'migration_target_path' );
281
		$migrationName = str_replace('/', '_', $this->migrationName);
282
		$fileName = $this->getDatePrefix() . '_' . $migrationName . '.php';
283
284
		return "{$path}/{$fileName}";
285
	}
286
287
	/**
288
	 * Get the date prefix for the migration.
289
	 *
290
	 * @return string
291
	 */
292
	protected function getDatePrefix()
293
	{
294
		return $this->datePrefix;
295
	}
296
297
	/**
298
	 * Fetch the template data
299
	 *
300
	 * @return array
301
	 */
302
	protected function getTemplateData()
303
	{
304
		if ( $this->method == 'create' ) {
305
			$up = (new AddToTable($this->file, $this->compiler))->run($this->fields, $this->table, $this->connection, 'create');
0 ignored issues
show
Bug introduced by
It seems like $this->connection can also be of type string; however, Xethron\MigrationsGenerator\Syntax\Table::run() does only seem to accept null, maybe add an additional type check?

If a method or function can return multiple different values and unless you are sure that you only can receive a single value in this context, we recommend to add an additional type check:

/**
 * @return array|string
 */
function returnsDifferentValues($x) {
    if ($x) {
        return 'foo';
    }

    return array();
}

$x = returnsDifferentValues($y);
if (is_array($x)) {
    // $x is an array.
}

If this a common case that PHP Analyzer should handle natively, please let us know by opening an issue.

Loading history...
306
			$down = (new DroppedTable)->drop($this->table, $this->connection);
0 ignored issues
show
Bug introduced by
It seems like $this->connection can also be of type string; however, Xethron\MigrationsGenera...ax\DroppedTable::drop() does only seem to accept null, maybe add an additional type check?

If a method or function can return multiple different values and unless you are sure that you only can receive a single value in this context, we recommend to add an additional type check:

/**
 * @return array|string
 */
function returnsDifferentValues($x) {
    if ($x) {
        return 'foo';
    }

    return array();
}

$x = returnsDifferentValues($y);
if (is_array($x)) {
    // $x is an array.
}

If this a common case that PHP Analyzer should handle natively, please let us know by opening an issue.

Loading history...
307
		}
308
309
		if ( $this->method == 'table' ) {
310
			$up = (new AddForeignKeysToTable($this->file, $this->compiler))->run($this->fields, $this->table, $this->connection);
0 ignored issues
show
Bug introduced by
It seems like $this->connection can also be of type string; however, Xethron\MigrationsGenerator\Syntax\Table::run() does only seem to accept null, maybe add an additional type check?

If a method or function can return multiple different values and unless you are sure that you only can receive a single value in this context, we recommend to add an additional type check:

/**
 * @return array|string
 */
function returnsDifferentValues($x) {
    if ($x) {
        return 'foo';
    }

    return array();
}

$x = returnsDifferentValues($y);
if (is_array($x)) {
    // $x is an array.
}

If this a common case that PHP Analyzer should handle natively, please let us know by opening an issue.

Loading history...
311
			$down = (new RemoveForeignKeysFromTable($this->file, $this->compiler))->run($this->fields, $this->table, $this->connection);
0 ignored issues
show
Bug introduced by
It seems like $this->connection can also be of type string; however, Xethron\MigrationsGenerator\Syntax\Table::run() does only seem to accept null, maybe add an additional type check?

If a method or function can return multiple different values and unless you are sure that you only can receive a single value in this context, we recommend to add an additional type check:

/**
 * @return array|string
 */
function returnsDifferentValues($x) {
    if ($x) {
        return 'foo';
    }

    return array();
}

$x = returnsDifferentValues($y);
if (is_array($x)) {
    // $x is an array.
}

If this a common case that PHP Analyzer should handle natively, please let us know by opening an issue.

Loading history...
312
		}
313
314
		return [
315
			'CLASS' => ucwords(camel_case($this->migrationName)),
316
			'UP'    => $up,
0 ignored issues
show
Bug introduced by
The variable $up does not seem to be defined for all execution paths leading up to this point.

If you define a variable conditionally, it can happen that it is not defined for all execution paths.

Let’s take a look at an example:

function myFunction($a) {
    switch ($a) {
        case 'foo':
            $x = 1;
            break;

        case 'bar':
            $x = 2;
            break;
    }

    // $x is potentially undefined here.
    echo $x;
}

In the above example, the variable $x is defined if you pass “foo” or “bar” as argument for $a. However, since the switch statement has no default case statement, if you pass any other value, the variable $x would be undefined.

Available Fixes

  1. Check for existence of the variable explicitly:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        if (isset($x)) { // Make sure it's always set.
            echo $x;
        }
    }
    
  2. Define a default value for the variable:

    function myFunction($a) {
        $x = ''; // Set a default which gets overridden for certain paths.
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        echo $x;
    }
    
  3. Add a value for the missing path:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
    
            // We add support for the missing case.
            default:
                $x = '';
                break;
        }
    
        echo $x;
    }
    
Loading history...
317
			'DOWN'  => $down
0 ignored issues
show
Bug introduced by
The variable $down does not seem to be defined for all execution paths leading up to this point.

If you define a variable conditionally, it can happen that it is not defined for all execution paths.

Let’s take a look at an example:

function myFunction($a) {
    switch ($a) {
        case 'foo':
            $x = 1;
            break;

        case 'bar':
            $x = 2;
            break;
    }

    // $x is potentially undefined here.
    echo $x;
}

In the above example, the variable $x is defined if you pass “foo” or “bar” as argument for $a. However, since the switch statement has no default case statement, if you pass any other value, the variable $x would be undefined.

Available Fixes

  1. Check for existence of the variable explicitly:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        if (isset($x)) { // Make sure it's always set.
            echo $x;
        }
    }
    
  2. Define a default value for the variable:

    function myFunction($a) {
        $x = ''; // Set a default which gets overridden for certain paths.
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        echo $x;
    }
    
  3. Add a value for the missing path:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
    
            // We add support for the missing case.
            default:
                $x = '';
                break;
        }
    
        echo $x;
    }
    
Loading history...
318
		];
319
	}
320
321
	/**
322
	 * Get path to template for generator
323
	 *
324
	 * @return string
325
	 */
326
	protected function getTemplatePath()
327
	{
328
		return $this->getPathByOptionOrConfig( 'templatePath', 'migration_template_path' );
329
	}
330
331
	/**
332
	 * Get the console command arguments.
333
	 *
334
	 * @return array
335
	 */
336
	protected function getArguments()
337
	{
338
		return [
339
			['tables', InputArgument::OPTIONAL, 'A list of Tables you wish to Generate Migrations for separated by a comma: users,posts,comments'],
340
		];
341
	}
342
343
	/**
344
	 * Get the console command options.
345
	 *
346
	 * @return array
347
	 */
348
	protected function getOptions()
349
	{
350
		return [
0 ignored issues
show
Bug Best Practice introduced by
The return type of return array(array('conn...ames for migrations')); (array<string|null>[]) is incompatible with the return type of the parent method Way\Generators\Commands\...atorCommand::getOptions of type array<string|null>[].

If you return a value from a function or method, it should be a sub-type of the type that is given by the parent type f.e. an interface, or abstract method. This is more formally defined by the Lizkov substitution principle, and guarantees that classes that depend on the parent type can use any instance of a child type interchangably. This principle also belongs to the SOLID principles for object oriented design.

Let’s take a look at an example:

class Author {
    private $name;

    public function __construct($name) {
        $this->name = $name;
    }

    public function getName() {
        return $this->name;
    }
}

abstract class Post {
    public function getAuthor() {
        return 'Johannes';
    }
}

class BlogPost extends Post {
    public function getAuthor() {
        return new Author('Johannes');
    }
}

class ForumPost extends Post { /* ... */ }

function my_function(Post $post) {
    echo strtoupper($post->getAuthor());
}

Our function my_function expects a Post object, and outputs the author of the post. The base class Post returns a simple string and outputting a simple string will work just fine. However, the child class BlogPost which is a sub-type of Post instead decided to return an object, and is therefore violating the SOLID principles. If a BlogPost were passed to my_function, PHP would not complain, but ultimately fail when executing the strtoupper call in its body.

Loading history...
351
			['connection', 'c', InputOption::VALUE_OPTIONAL, 'The database connection to use.', $this->config->get( 'database.default' )],
352
			['tables', 't', InputOption::VALUE_OPTIONAL, 'A list of Tables you wish to Generate Migrations for separated by a comma: users,posts,comments'],
353
			['ignore', 'i', InputOption::VALUE_OPTIONAL, 'A list of Tables you wish to ignore, separated by a comma: users,posts,comments' ],
354
			['path', 'p', InputOption::VALUE_OPTIONAL, 'Where should the file be created?'],
355
			['templatePath', 'tp', InputOption::VALUE_OPTIONAL, 'The location of the template for this generator'],
356
			['defaultIndexNames', null, InputOption::VALUE_NONE, 'Don\'t use db index names for migrations'],
357
			['defaultFKNames', null, InputOption::VALUE_NONE, 'Don\'t use db foreign key names for migrations'],
358
		];
359
	}
360
361
	/**
362
	 * Remove all the tables to exclude from the array of tables
363
	 *
364
	 * @param array $tables
365
	 *
366
	 * @return array
367
	 */
368
	protected function removeExcludedTables( array $tables )
369
	{
370
		$excludes = $this->getExcludedTables();
371
		$tables = array_diff($tables, $excludes);
372
373
		return $tables;
374
	}
375
376
	/**
377
	 * Get a list of tables to exclude
378
	 *
379
	 * @return array
380
	 */
381
	protected function getExcludedTables()
382
	{
383
		$excludes = ['migrations'];
384
		$ignore = $this->option('ignore');
385
		if ( ! empty($ignore)) {
386
			return array_merge($excludes, explode(',', $ignore));
387
		}
388
389
		return $excludes;
390
	}
391
392
}
393