@@ -40,6 +40,9 @@ public function testSuccess(string $environment, array $expectedCommand): void
4040 $ this ->assertSame (0 , $ exitCode );
4141 }
4242
43+ /**
44+ * @return \Generator<array-key, array{0: string, 1: string[]}, void, void>
45+ */
4346 public static function getTestSuccessProvider (): \Generator
4447 {
4548 yield ['env1 ' , [
@@ -96,6 +99,9 @@ public function testSuccessGo(string $environment, array $expectedCommand): void
9699 $ this ->assertSame (0 , $ exitCode );
97100 }
98101
102+ /**
103+ * @return \Generator<array-key, array{0: string, 1: string[]}, void, void>
104+ */
99105 public static function getTestSuccessGoProvider (): \Generator
100106 {
101107 yield ['env1 ' , [
@@ -163,6 +169,9 @@ public function testSuccessWithoutIgnoreFile(string $environment, array $expecte
163169 $ this ->assertSame (0 , $ exitCode );
164170 }
165171
172+ /**
173+ * @return \Generator<array-key, array{0: string, 1: string[]}, void, void>
174+ */
166175 public static function getTestSuccessWithoutIgnoreFileProvider (): \Generator
167176 {
168177 yield ['env1 ' , [
@@ -231,6 +240,9 @@ public function testWithGlobalIgnoreFileAndWithEnvIgnoreFile(string $environment
231240 $ this ->assertSame (0 , $ exitCode );
232241 }
233242
243+ /**
244+ * @return \Generator<array-key, array{0: string, 1: string[]}, void, void>
245+ */
234246 public static function getTestWithGlobalIgnoreFileAndWithEnvIgnoreFileProvider (): \Generator
235247 {
236248 yield ['env1 ' , [
@@ -289,6 +301,9 @@ public function testWithoutGlobalIgnoreFileAndWithEnvIgnoreFile(string $environm
289301 $ this ->assertSame (0 , $ exitCode );
290302 }
291303
304+ /**
305+ * @return \Generator<array-key, array{0: string, 1: string[]}, void, void>
306+ */
292307 public static function getTestWithoutGlobalIgnoreFileAndWithEnvIgnoreFileProvider (): \Generator
293308 {
294309 yield ['env1 ' , [
@@ -349,6 +364,9 @@ public function testWithEnvRsyncOptions(string $environment, array $expectedComm
349364 $ this ->assertSame (0 , $ exitCode );
350365 }
351366
367+ /**
368+ * @return \Generator<array-key, array{0: string, 1: string[]}, void, void>
369+ */
352370 public static function getTestWithEnvRsyncOptionsProvider (): \Generator
353371 {
354372 yield ['env1 ' , [
0 commit comments