mirror of
https://github.com/danog/psalm.git
synced 2025-01-10 23:18:40 +01:00
67 lines
1.6 KiB
PHP
67 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace Psalm\Internal\Fork;
|
|
|
|
use Composer\XdebugHandler\XdebugHandler;
|
|
|
|
use function array_filter;
|
|
use function extension_loaded;
|
|
use function file_get_contents;
|
|
use function file_put_contents;
|
|
use function implode;
|
|
use function preg_replace;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class PsalmRestarter extends XdebugHandler
|
|
{
|
|
/**
|
|
* @var bool
|
|
*/
|
|
private $required = false;
|
|
|
|
/**
|
|
* @var string[]
|
|
*/
|
|
private $disabledExtensions = [];
|
|
|
|
public function disableExtension(string $disabledExtension): void
|
|
{
|
|
$this->disabledExtensions[] = $disabledExtension;
|
|
}
|
|
|
|
/**
|
|
* No type hint to allow xdebug-handler v1 and v2 usage
|
|
* @param bool $default
|
|
*/
|
|
protected function requiresRestart($default): bool
|
|
{
|
|
$this->required = (bool) array_filter(
|
|
$this->disabledExtensions,
|
|
static fn(string $extension): bool => extension_loaded($extension)
|
|
);
|
|
|
|
return $default || $this->required;
|
|
}
|
|
|
|
/**
|
|
* No type hint to allow xdebug-handler v1 and v2 usage
|
|
* @param string|string[] $command
|
|
*/
|
|
protected function restart($command): void
|
|
{
|
|
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 PossiblyInvalidArgument */
|
|
parent::restart($command);
|
|
}
|
|
}
|