Skip to content

Commit 65d36eb

Browse files
committed
fix: cs
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 5384887 commit 65d36eb

1 file changed

Lines changed: 13 additions & 2 deletions

File tree

tests/Integration/VisibleStampTemplateScenarioTest.php

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@ public function testVisibleStampLayoutsCanBeCompiledAndExported(
3232
self::ensureDirectoryExists($previewRoot);
3333
self::ensureDirectoryExists($assetRoot);
3434

35-
$backgroundPath = self::createBackgroundPreview($assetRoot . '/background-' . $slug . '.png', (int) $width, (int) $height);
35+
$backgroundPath = self::createBackgroundPreview(
36+
$assetRoot . '/background-' . $slug . '.png',
37+
(int) $width,
38+
(int) $height,
39+
);
3640
$signaturePath = self::layoutUsesSignatureImage($layout)
3741
? self::createSignaturePreview($assetRoot . '/signature-' . $slug . '.png')
3842
: null;
@@ -61,7 +65,14 @@ public function testVisibleStampLayoutsCanBeCompiledAndExported(
6165
}
6266

6367
/**
64-
* @return iterable<string, array{slug: string, layout: string, width: float, height: float, expectedImageCount: int, expectedTexts: list<string>}>
68+
* @return iterable<string, array{
69+
* slug: string,
70+
* layout: string,
71+
* width: float,
72+
* height: float,
73+
* expectedImageCount: int,
74+
* expectedTexts: list<string>
75+
* }>
6576
*/
6677
public static function visibleStampLayoutScenarios(): iterable
6778
{

0 commit comments

Comments
 (0)