php-cs-fixer

This commit is contained in:
andrea.esu
2024-08-07 15:30:14 +02:00
parent 41a4b661aa
commit 9be71c5c63
2 changed files with 2 additions and 2 deletions

View File

@@ -135,7 +135,7 @@ class LinuxBuilder extends UnixBuilderBase
$disable_jit = $this->getOption('disable-opcache-jit', false) ? '--disable-opcache-jit ' : '';
$config_file_path = $this->getOption('with-config-file-path', false) ?
( '--with-config-file-path=' . $this->getOption('with-config-file-path') . ' ' ) : '';
('--with-config-file-path=' . $this->getOption('with-config-file-path') . ' ') : '';
$enable_cli = ($build_target & BUILD_TARGET_CLI) === BUILD_TARGET_CLI;
$enable_fpm = ($build_target & BUILD_TARGET_FPM) === BUILD_TARGET_FPM;

View File

@@ -104,7 +104,7 @@ class WindowsBuilder extends BuilderBase
$micro_w32 = $this->getOption('enable-micro-win32') ? ' --enable-micro-win32=yes' : '';
$config_file_path = $this->getOption('with-config-file-path', false) ?
( '--with-config-file-path=' . $this->getOption('with-config-file-path') . ' ' ) : '';
('--with-config-file-path=' . $this->getOption('with-config-file-path') . ' ') : '';
cmd()->cd(SOURCE_PATH . '\php-src')
->exec(