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 26
26
],
27
27
"autoload" : {
28
28
"psr-4" : {
29
- "Umbrellio\\ Deploy \\ " : " src/"
29
+ "Umbrellio\\ RollbackMissingMigrations \\ " : " src/"
30
30
}
31
31
},
32
32
"autoload-dev" : {
33
33
"psr-4" : {
34
- "Umbrellio\\ Deploy \\ Tests\\ " : " tests/"
34
+ "Umbrellio\\ RollbackMissingMigrations \\ Tests\\ " : " tests/"
35
35
}
36
36
},
37
37
"require" : {
56
56
"extra" : {
57
57
"laravel" : {
58
58
"providers" : [
59
- " Umbrellio\\ Deploy \\ RollbackMissingMigrationServiceProvider"
59
+ " Umbrellio\\ RollbackMissingMigrations \\ RollbackMissingMigrationServiceProvider"
60
60
]
61
61
}
62
62
}
Original file line number Diff line number Diff line change 2
2
3
3
declare (strict_types=1 );
4
4
5
- namespace Umbrellio \Deploy \Console ;
5
+ namespace Umbrellio \RollbackMissingMigrations \Console ;
6
6
7
7
use Illuminate \Database \Console \Migrations \BaseCommand ;
8
8
use Illuminate \Support \Facades \App ;
9
9
use Symfony \Component \Process \Process ;
10
- use Umbrellio \Deploy \Helpers \DbHelper ;
10
+ use Umbrellio \RollbackMissingMigrations \Helpers \DbHelper ;
11
11
12
12
class RollbackMissingMigrations extends BaseCommand
13
13
{
Original file line number Diff line number Diff line change 2
2
3
3
declare (strict_types=1 );
4
4
5
- namespace Umbrellio \Deploy \Console ;
5
+ namespace Umbrellio \RollbackMissingMigrations \Console ;
6
6
7
7
use Illuminate \Console \Command ;
8
8
use Illuminate \Database \Migrations \Migration ;
Original file line number Diff line number Diff line change 2
2
3
3
declare (strict_types=1 );
4
4
5
- namespace Umbrellio \Deploy \Exceptions ;
5
+ namespace Umbrellio \RollbackMissingMigrations \Exceptions ;
6
6
7
7
use Exception ;
8
8
use Illuminate \Support \Collection ;
Original file line number Diff line number Diff line change 2
2
3
3
declare (strict_types=1 );
4
4
5
- namespace Umbrellio \Deploy \Helpers ;
5
+ namespace Umbrellio \RollbackMissingMigrations \Helpers ;
6
6
7
7
use Illuminate \Support \Collection ;
8
8
use Illuminate \Support \Facades \Config ;
9
9
use Illuminate \Support \Facades \DB ;
10
- use Umbrellio \Deploy \Exceptions \RollbackMissingMigrationException ;
10
+ use Umbrellio \RollbackMissingMigrations \Exceptions \RollbackMissingMigrationException ;
11
11
12
12
class DbHelper
13
13
{
Original file line number Diff line number Diff line change 2
2
3
3
declare (strict_types=1 );
4
4
5
- namespace Umbrellio \Deploy ;
5
+ namespace Umbrellio \RollbackMissingMigrations ;
6
6
7
7
use 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 ;
10
10
11
11
class RollbackMissingMigrationServiceProvider extends ServiceProvider
12
12
{
Original file line number Diff line number Diff line change 2
2
3
3
declare (strict_types=1 );
4
4
5
- namespace Umbrellio \Deploy \Tests ;
5
+ namespace Umbrellio \RollbackMissingMigrations \Tests ;
6
6
7
7
use Illuminate \Foundation \Application ;
8
8
use Orchestra \Testbench \TestCase ;
Original file line number Diff line number Diff line change 2
2
3
3
declare (strict_types=1 );
4
4
5
- namespace Umbrellio \Deploy \Tests ;
5
+ namespace Umbrellio \RollbackMissingMigrations \Tests ;
6
6
7
7
use PHPUnit \Framework \TestCase ;
8
8
Original file line number Diff line number Diff line change 2
2
3
3
declare (strict_types=1 );
4
4
5
- namespace Umbrellio \Deploy \Tests \functional \Console ;
5
+ namespace Umbrellio \RollbackMissingMigrations \Tests \functional \Console ;
6
6
7
7
use Generator ;
8
8
use Illuminate \Support \Facades \Artisan ;
9
9
use 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 ;
13
13
14
14
class RollbackMissingMigrationsTest extends FunctionalTestCase
15
15
{
You can’t perform that action at this time.
0 commit comments