Skip to content

Commit a9ca4b3

Browse files
committed
chore: fix cs
1 parent 01f21f5 commit a9ca4b3

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

tests/Requests/PostEvent/JobDataTest.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
namespace Keboola\NotificationClient\Tests\Requests\PostEvent;
66

77
use DateTimeImmutable;
8+
use Generator;
89
use Keboola\NotificationClient\Requests\PostEvent\JobData;
910
use PHPUnit\Framework\TestCase;
1011

@@ -18,7 +19,7 @@ public function testJsonSerialize(JobData $jobData, array $expected): void
1819
self::assertSame($expected, $jobData->jsonSerialize());
1920
}
2021

21-
public function jobDataProvider()
22+
public function jobDataProvider(): Generator
2223
{
2324
yield 'full data' => [
2425
new JobData(
@@ -45,7 +46,7 @@ public function jobDataProvider()
4546
'id' => 'my-configuration',
4647
'name' => 'My configuration',
4748
],
48-
]
49+
],
4950
];
5051
yield 'null configuration id' => [
5152
new JobData(

0 commit comments

Comments
 (0)