Skip to content

Commit 714587d

Browse files
committed
Rename service provider class
1 parent 550dc1c commit 714587d

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

bootstrap/providers.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
// only for testing, to support the artisan mock
44

55
return [
6-
Vectorial1024\LaravelProcessAsync\BackgroundAsyncServiceProvider::class,
6+
Vectorial1024\LaravelProcessAsync\ProcessAsyncServiceProvider::class,
77
];

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"extra": {
4646
"laravel": {
4747
"providers": [
48-
"Vectorial1024\\LaravelProcessAsync\\BackgroundAsyncServiceProvider"
48+
"Vectorial1024\\LaravelProcessAsync\\ProcessAsyncServiceProvider"
4949
]
5050
}
5151
}

tests/BaseTestCase.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ protected function getPackageProviders($app)
1414
{
1515
// load required package providers for our library to work during testing
1616
return [
17-
\Vectorial1024\LaravelProcessAsync\BackgroundAsyncServiceProvider::class
17+
\Vectorial1024\LaravelProcessAsync\ProcessAsyncServiceProvider::class
1818
];
1919
}
2020

0 commit comments

Comments
 (0)