Fix Pint formatting

This commit is contained in:
root
2026-06-09 01:25:14 -04:00
parent 6be4875c5e
commit 20a0b6c4e5
1485 changed files with 11318 additions and 10273 deletions
@@ -15,7 +15,7 @@ class ApiDataShapeBackwardCompatibilityContractTest extends FullSurfaceE2EContra
$response = $this->actingAs($this->actorFor($uri), 'api')->getJson($this->materializePath($uri));
$this->assertControlled($response, 'GET', $uri);
$this->assertNoServerError($response, 'collection envelope ' . $uri);
$this->assertNoServerError($response, 'collection envelope '.$uri);
if ($response->getStatusCode() !== 200 || ! $this->isJsonString($response->getContent())) {
continue;
@@ -31,7 +31,7 @@ class ApiDataShapeBackwardCompatibilityContractTest extends FullSurfaceE2EContra
|| array_key_exists('message', $payload)
|| array_key_exists('status', $payload)
),
$uri . ' should keep a predictable collection/read envelope.'
$uri.' should keep a predictable collection/read envelope.'
);
}
}
@@ -45,7 +45,7 @@ class ApiDataShapeBackwardCompatibilityContractTest extends FullSurfaceE2EContra
$response = $this->actingAs($this->actorFor($uri), 'api')->getJson($this->materializePath($uri));
$this->assertControlled($response, 'GET', $uri);
$this->assertNoServerError($response, 'detail envelope ' . $uri);
$this->assertNoServerError($response, 'detail envelope '.$uri);
if ($response->getStatusCode() !== 200 || ! $this->isJsonString($response->getContent())) {
continue;
@@ -54,7 +54,7 @@ class ApiDataShapeBackwardCompatibilityContractTest extends FullSurfaceE2EContra
$payload = $response->json();
$this->assertTrue(
data_get($payload, 'id') !== null || data_get($payload, 'data.id') !== null || data_get($payload, 'message') !== null || data_get($payload, 'status') !== null,
$uri . ' should keep an identifier, data wrapper, or explicit status/message contract.'
$uri.' should keep an identifier, data wrapper, or explicit status/message contract.'
);
}
}