mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-04 15:25:41 +08:00
Rename ignoreConfigureArgs to removeConfigureArgs
This commit is contained in:
@@ -25,7 +25,7 @@ trait librdkafka
|
||||
},
|
||||
'--disable-zstd'
|
||||
)
|
||||
->ignoreConfigureArgs(
|
||||
->removeConfigureArgs(
|
||||
'--with-pic',
|
||||
'--enable-pic',
|
||||
)
|
||||
|
||||
@@ -100,9 +100,9 @@ class UnixAutoconfExecutor extends Executor
|
||||
}
|
||||
|
||||
/**
|
||||
* Ignore some configure args, to bypass the configure option checking for some libs.
|
||||
* Remove some configure args, to bypass the configure option checking for some libs.
|
||||
*/
|
||||
public function ignoreConfigureArgs(...$args): static
|
||||
public function removeConfigureArgs(...$args): static
|
||||
{
|
||||
$this->ignore_args = [...$this->ignore_args, ...$args];
|
||||
return $this;
|
||||
|
||||
Reference in New Issue
Block a user