Skip to content

Commit

Permalink
Merge pull request #40 from JorisDebonnet/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
JayBizzle authored Dec 7, 2021
2 parents d7a789c + 04c4c0c commit 944db24
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions src/Commands/MigrateDisorganise.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ class MigrateDisorganise extends BaseCommand
/**
* The migrator instance.
*
* @var \Jaybizzle\MigrationsOrganiser\Migrator
* @var Migrator
*/
protected $migrator;

/**
* The filesystem instance.
*
* @var \Illuminate\Filesystem\Filesystem
* @var Filesystem
*/
protected $files;

Expand All @@ -45,8 +45,8 @@ class MigrateDisorganise extends BaseCommand
/**
* Create a new migrator instance.
*
* @param \Illuminate\Filesystem\Filesystem $files
* @param \Illuminate\Database\Migrations\Migrator $migrator
* @param Filesystem $files
* @param Migrator $migrator
*/
public function __construct(Filesystem $files, Migrator $migrator)
{
Expand Down
8 changes: 4 additions & 4 deletions src/Commands/MigrateOrganise.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,22 +25,22 @@ class MigrateOrganise extends BaseCommand
/**
* The migrator instance.
*
* @var \Jaybizzle\MigrationsOrganiser\Migrator
* @var Migrator
*/
protected $migrator;

/**
* The filesystem instance.
*
* @var \Illuminate\Filesystem\Filesystem
* @var Filesystem
*/
protected $files;

/**
* Create a new migrator instance.
*
* @param \Illuminate\Filesystem\Filesystem $files
* @param \Illuminate\Database\Migrations\Migrator $migrator
* @param Filesystem $files
* @param Migrator $migrator
*/
public function __construct(Filesystem $files, Migrator $migrator)
{
Expand Down
4 changes: 2 additions & 2 deletions src/Migrator.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Migrator extends M
/**
* Get all of the migration files in a given path.
*
* @param string $path
* @param string|array $paths
* @param bool $recursive
* @return array
*/
Expand All @@ -29,7 +29,7 @@ public function getMigrationFiles($paths = [], $recursive = true)
/**
* Get all subdirectories located in an array of folders.
*
* @param array $folders
* @param string|array $folders
* @return array
*/
public function getRecursiveFolders($folders)
Expand Down

0 comments on commit 944db24

Please sign in to comment.