disabledExtensions[] = $disabledExtension; } /** * @param mixed $loaded */ protected function requiresRestart($loaded) { $this->required = (bool) array_filter( $this->disabledExtensions, /** * @param string $extension * * @return bool */ function ($extension) { return extension_loaded($extension); } ); return $loaded || $this->required; } /** * @param mixed $command * * @return void */ protected function restart($command) { if ($this->required && $this->tmpIni) { $regex = '/^\s*(extension\s*=.*(' . implode('|', $this->disabledExtensions) . ').*)$/mi'; $content = file_get_contents($this->tmpIni); $content = preg_replace($regex, ';$1', $content); file_put_contents($this->tmpIni, $content); } /** @psalm-suppress MixedArgument */ parent::restart($command); } }