Skip to content

Features/once #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Jan 26, 2021
Prev Previous commit
Next Next commit
Replaced migrator link
  • Loading branch information
Andrey Helldar committed Jan 25, 2021
commit a70fc62e1f4ca6fb1bf323753820d1a133251a90
6 changes: 3 additions & 3 deletions src/Console/Reset.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
namespace Helldar\LaravelActions\Console;

use Helldar\LaravelActions\Constants\Names;
use Helldar\LaravelActions\Support\Migrator;
use Helldar\LaravelActions\Traits\Database;
use Helldar\LaravelActions\Traits\Infoable;
use Helldar\LaravelActions\Traits\Optionable;
use Illuminate\Console\ConfirmableTrait;
use Illuminate\Database\Console\Migrations\BaseCommand;
use Illuminate\Database\Migrations\Migrator;
use Symfony\Component\Console\Input\InputOption;

final class Reset extends BaseCommand
Expand All @@ -35,14 +35,14 @@ final class Reset extends BaseCommand
/**
* The migrator instance.
*
* @var \Illuminate\Database\Migrations\Migrator
* @var \Helldar\LaravelActions\Support\Migrator
*/
protected $migrator;

/**
* Create a new migration rollback command instance.
*
* @param \Illuminate\Database\Migrations\Migrator $migrator
* @param \Helldar\LaravelActions\Support\Migrator $migrator
*/
public function __construct(Migrator $migrator)
{
Expand Down