File tree Expand file tree Collapse file tree 9 files changed +18
-18
lines changed Expand file tree Collapse file tree 9 files changed +18
-18
lines changed Original file line number Diff line number Diff line change 2626 ],
2727 "autoload" : {
2828 "psr-4" : {
29- "Umbrellio\\ Deploy \\ " : " src/"
29+ "Umbrellio\\ RollbackMissingMigrations \\ " : " src/"
3030 }
3131 },
3232 "autoload-dev" : {
3333 "psr-4" : {
34- "Umbrellio\\ Deploy \\ Tests\\ " : " tests/"
34+ "Umbrellio\\ RollbackMissingMigrations \\ Tests\\ " : " tests/"
3535 }
3636 },
3737 "require" : {
5656 "extra" : {
5757 "laravel" : {
5858 "providers" : [
59- " Umbrellio\\ Deploy \\ RollbackMissingMigrationServiceProvider"
59+ " Umbrellio\\ RollbackMissingMigrations \\ RollbackMissingMigrationServiceProvider"
6060 ]
6161 }
6262 }
Original file line number Diff line number Diff line change 22
33declare (strict_types=1 );
44
5- namespace Umbrellio \Deploy \Console ;
5+ namespace Umbrellio \RollbackMissingMigrations \Console ;
66
77use Illuminate \Database \Console \Migrations \BaseCommand ;
88use Illuminate \Support \Facades \App ;
99use Symfony \Component \Process \Process ;
10- use Umbrellio \Deploy \Helpers \DbHelper ;
10+ use Umbrellio \RollbackMissingMigrations \Helpers \DbHelper ;
1111
1212class RollbackMissingMigrations extends BaseCommand
1313{
Original file line number Diff line number Diff line change 22
33declare (strict_types=1 );
44
5- namespace Umbrellio \Deploy \Console ;
5+ namespace Umbrellio \RollbackMissingMigrations \Console ;
66
77use Illuminate \Console \Command ;
88use Illuminate \Database \Migrations \Migration ;
Original file line number Diff line number Diff line change 22
33declare (strict_types=1 );
44
5- namespace Umbrellio \Deploy \Exceptions ;
5+ namespace Umbrellio \RollbackMissingMigrations \Exceptions ;
66
77use Exception ;
88use Illuminate \Support \Collection ;
Original file line number Diff line number Diff line change 22
33declare (strict_types=1 );
44
5- namespace Umbrellio \Deploy \Helpers ;
5+ namespace Umbrellio \RollbackMissingMigrations \Helpers ;
66
77use Illuminate \Support \Collection ;
88use Illuminate \Support \Facades \Config ;
99use Illuminate \Support \Facades \DB ;
10- use Umbrellio \Deploy \Exceptions \RollbackMissingMigrationException ;
10+ use Umbrellio \RollbackMissingMigrations \Exceptions \RollbackMissingMigrationException ;
1111
1212class DbHelper
1313{
Original file line number Diff line number Diff line change 22
33declare (strict_types=1 );
44
5- namespace Umbrellio \Deploy ;
5+ namespace Umbrellio \RollbackMissingMigrations ;
66
77use Illuminate \Support \ServiceProvider ;
8- use Umbrellio \Deploy \Console \RollbackMissingMigrations ;
9- use Umbrellio \Deploy \Console \RollbackNewMigrations ;
8+ use Umbrellio \RollbackMissingMigrations \Console \RollbackMissingMigrations ;
9+ use Umbrellio \RollbackMissingMigrations \Console \RollbackNewMigrations ;
1010
1111class RollbackMissingMigrationServiceProvider extends ServiceProvider
1212{
Original file line number Diff line number Diff line change 22
33declare (strict_types=1 );
44
5- namespace Umbrellio \Deploy \Tests ;
5+ namespace Umbrellio \RollbackMissingMigrations \Tests ;
66
77use Illuminate \Foundation \Application ;
88use Orchestra \Testbench \TestCase ;
Original file line number Diff line number Diff line change 22
33declare (strict_types=1 );
44
5- namespace Umbrellio \Deploy \Tests ;
5+ namespace Umbrellio \RollbackMissingMigrations \Tests ;
66
77use PHPUnit \Framework \TestCase ;
88
Original file line number Diff line number Diff line change 22
33declare (strict_types=1 );
44
5- namespace Umbrellio \Deploy \Tests \functional \Console ;
5+ namespace Umbrellio \RollbackMissingMigrations \Tests \functional \Console ;
66
77use Generator ;
88use Illuminate \Support \Facades \Artisan ;
99use Illuminate \Support \Facades \DB ;
10- use Umbrellio \Deploy \Exceptions \RollbackMissingMigrationException ;
11- use Umbrellio \Deploy \RollbackMissingMigrationServiceProvider ;
12- use Umbrellio \Deploy \Tests \FunctionalTestCase ;
10+ use Umbrellio \RollbackMissingMigrations \Exceptions \RollbackMissingMigrationException ;
11+ use Umbrellio \RollbackMissingMigrations \RollbackMissingMigrationServiceProvider ;
12+ use Umbrellio \RollbackMissingMigrations \Tests \FunctionalTestCase ;
1313
1414class RollbackMissingMigrationsTest extends FunctionalTestCase
1515{
You can’t perform that action at this time.
0 commit comments