From 4071125172db4371b2dbde79262c1fd2c4c66d21 Mon Sep 17 00:00:00 2001 From: Christian <32448411+ChristianBengstrom@users.noreply.github.com> Date: Tue, 26 Oct 2021 21:05:03 +0200 Subject: [PATCH] Added return type docs (#10221) --- tests/Composer/Test/Command/RunScriptCommandTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Composer/Test/Command/RunScriptCommandTest.php b/tests/Composer/Test/Command/RunScriptCommandTest.php index 6a2adbd2d..6b1618224 100644 --- a/tests/Composer/Test/Command/RunScriptCommandTest.php +++ b/tests/Composer/Test/Command/RunScriptCommandTest.php @@ -88,6 +88,7 @@ class RunScriptCommandTest extends TestCase $command->run($input, $output); } + /** @return bool[][] **/ public function getDevOptions() { return array( @@ -98,6 +99,7 @@ class RunScriptCommandTest extends TestCase ); } + /** @return Composer **/ private function createComposerInstance() { $composer = new Composer;