Revert "Add concat_space rule"

This reverts commit 96acd268be.
This commit is contained in:
Lance Pioch
2024-10-19 21:14:41 -04:00
parent 466f9f7edc
commit deb6603840
105 changed files with 272 additions and 271 deletions

View File

@@ -19,7 +19,7 @@ class DaemonConfigurationRepository extends DaemonRepository
$response = $this
->getHttpClient()
->connectTimeout($connectTimeout)
->get('/api/system'.(!is_null($version) ? '?v='.$version : ''));
->get('/api/system' . (!is_null($version) ? '?v=' . $version : ''));
} catch (TransferException $exception) {
throw new DaemonConnectionException($exception);
}

View File

@@ -96,7 +96,7 @@ class DaemonServerRepository extends DaemonRepository
Assert::isInstanceOf($this->server, Server::class);
try {
$this->getHttpClient()->delete('/api/servers/'.$this->server->uuid);
$this->getHttpClient()->delete('/api/servers/' . $this->server->uuid);
} catch (TransferException $exception) {
throw new DaemonConnectionException($exception);
}
@@ -192,7 +192,7 @@ class DaemonServerRepository extends DaemonRepository
{
Assert::isInstanceOf($this->server, Server::class);
$this->revokeJTIs([md5($id.$this->server->uuid)]);
$this->revokeJTIs([md5($id . $this->server->uuid)]);
}
/**