1010class SymfonyCommandTaskIntegrationTest extends \PHPUnit \Framework \TestCase
1111{
1212
13- public function testCallCommand ()
13+ public function testCallCommand (): void
1414 {
1515 $ tester = new PhingTester (__DIR__ . '/symfony-command-task-integration-test.xml ' );
1616 $ target = __FUNCTION__ ;
@@ -23,7 +23,7 @@ public function testCallCommand()
2323 ), $ target , Project::MSG_VERBOSE );
2424 }
2525
26- public function testCallCommandWithCustomExecutable ()
26+ public function testCallCommandWithCustomExecutable (): void
2727 {
2828 $ tester = new PhingTester (__DIR__ . '/symfony-command-task-integration-test.xml ' );
2929 $ target = __FUNCTION__ ;
@@ -36,7 +36,7 @@ public function testCallCommandWithCustomExecutable()
3636 ), $ target , Project::MSG_VERBOSE );
3737 }
3838
39- public function testCallCommandWithCustomApp ()
39+ public function testCallCommandWithCustomApp (): void
4040 {
4141 $ tester = new PhingTester (__DIR__ . '/symfony-command-task-integration-test.xml ' );
4242 $ target = __FUNCTION__ ;
@@ -49,7 +49,7 @@ public function testCallCommandWithCustomApp()
4949 ), $ target , Project::MSG_VERBOSE );
5050 }
5151
52- public function testCallCommandWithCustomExecutableAndApp ()
52+ public function testCallCommandWithCustomExecutableAndApp (): void
5353 {
5454 $ tester = new PhingTester (__DIR__ . '/symfony-command-task-integration-test.xml ' );
5555 $ target = __FUNCTION__ ;
@@ -62,7 +62,7 @@ public function testCallCommandWithCustomExecutableAndApp()
6262 ), $ target , Project::MSG_VERBOSE );
6363 }
6464
65- public function testCallCommandWithAppAsExecutable ()
65+ public function testCallCommandWithAppAsExecutable (): void
6666 {
6767 $ tester = new PhingTester (__DIR__ . '/symfony-command-task-integration-test.xml ' );
6868 $ target = __FUNCTION__ ;
@@ -74,7 +74,7 @@ public function testCallCommandWithAppAsExecutable()
7474 ), $ target , Project::MSG_VERBOSE );
7575 }
7676
77- public function testCallCommandAndOverrideDefaults ()
77+ public function testCallCommandAndOverrideDefaults (): void
7878 {
7979 $ tester = new PhingTester (__DIR__ . '/symfony-command-task-integration-test.xml ' );
8080 $ target = __FUNCTION__ ;
@@ -87,7 +87,7 @@ public function testCallCommandAndOverrideDefaults()
8787 ), $ target , Project::MSG_VERBOSE );
8888 }
8989
90- public function testMissingApp ()
90+ public function testMissingApp (): void
9191 {
9292 $ tester = new PhingTester (__DIR__ . '/symfony-command-task-integration-test.xml ' );
9393 $ target = __FUNCTION__ ;
0 commit comments