Skip to content

Commit a579f53

Browse files
authoredSep 11, 2024··
Cleanup unneeded code (#724)
1 parent 41c0229 commit a579f53

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed
 

‎src/Console/Concerns/InteractsWithDockerComposeServices.php

-7
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,6 @@ protected function buildDockerCompose(array $services)
8181
->all();
8282
}
8383

84-
// Update the dependencies if the MariaDB service is used...
85-
if (in_array('mariadb', $services)) {
86-
$compose['services']['laravel.test']['depends_on'] = array_map(function ($dependedItem) {
87-
return $dependedItem;
88-
}, $compose['services']['laravel.test']['depends_on']);
89-
}
90-
9184
// Add the services to the docker-compose.yml...
9285
collect($services)
9386
->filter(function ($service) use ($compose) {

0 commit comments

Comments
 (0)
Please sign in to comment.