File tree 3 files changed +3
-2
lines changed
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ before_install:
30
30
- curl -L https://github.com/docker/compose/releases/download/1.24.1/docker-compose-`uname -s`-`uname -m` > docker-compose
31
31
- chmod +x docker-compose
32
32
- sudo mv docker-compose /usr/local/bin
33
+ - sudo pip install --ignore-installed PyYAML
33
34
- sudo pip install docker-compose-wait
34
35
35
36
before_script :
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ use Illuminate\Support\ServiceProvider;
74
74
75
75
class DatabaseServiceProvider extends ServiceProvider
76
76
{
77
- public function boot (): void
77
+ public function register (): void
78
78
{
79
79
Connection::resolverFor('mysql', function (...$parameters) {
80
80
return new MySqlConnection(...$parameters);
Original file line number Diff line number Diff line change 10
10
*/
11
11
class MySqlConnectionServiceProvider extends ServiceProvider
12
12
{
13
- public function boot (): void
13
+ public function register (): void
14
14
{
15
15
Connection::resolverFor ('mysql ' , function (...$ parameters ) {
16
16
return new MySqlConnection (...$ parameters );
You can’t perform that action at this time.
0 commit comments