File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -141,6 +141,7 @@ public function __construct(InputInterface $input)
141
141
public function read (): Repository
142
142
{
143
143
$ repository = new Repository ();
144
+ $ disabledExtensions = [];
144
145
145
146
if ($ mode = $ this ->input ->getOption (self ::OPTION_MODE )) {
146
147
$ repository ->set ([
@@ -236,7 +237,7 @@ public function read(): Repository
236
237
}
237
238
238
239
if ($ this ->input ->getOption (self ::OPTION_WITHOUT_BLACKFIRE )) {
239
- $ repository -> set ( self :: PHP_DISABLED_EXTENSIONS , ['blackfire ' => 'blackfire ' ]) ;
240
+ $ disabledExtensions ['blackfire ' ] = 'blackfire ' ;
240
241
}
241
242
242
243
if ($ this ->input ->getOption (self ::OPTION_SET_DOCKER_HOST_XDEBUG )) {
@@ -303,6 +304,7 @@ public function read(): Repository
303
304
$ repository ->set (self ::SYSTEM_MAILHOG_HTTP_PORT , $ port );
304
305
}
305
306
307
+ $ repository ->set (self ::PHP_DISABLED_EXTENSIONS , $ disabledExtensions );
306
308
return $ repository ;
307
309
}
308
310
}
You can’t perform that action at this time.
0 commit comments