Completed
Pull Request — master (#71)
by Sullivan
01:22
created
tests/VersionsCheckPluginTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -256,6 +256,9 @@
 block discarded – undo
256 256
         $addPluginReflection->invoke($this->composer->getPluginManager(), $plugin);
257 257
     }
258 258
 
259
+    /**
260
+     * @param string $expectedOutput
261
+     */
259 262
     private function assertSameOutput($expectedOutput, $message = '')
260 263
     {
261 264
         $this->assertSame($expectedOutput, $this->io->getOutput(), $message);
Please login to merge, or discard this patch.
tests/TestCase.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -6,6 +6,10 @@
 block discarded – undo
6 6
 if (class_exists('\PHPUnit\Framework\TestCase')) {
7 7
     abstract class TestCase extends \PHPUnit\Framework\TestCase
8 8
     {
9
+
10
+        /**
11
+         * @param string $originalClassName
12
+         */
9 13
         protected function getMock($originalClassName, $methods = [], array $arguments = [], $mockClassName = '', $callOriginalConstructor = true, $callOriginalClone = true, $callAutoload = true, $cloneArguments = false, $callOriginalMethods = false, $proxyTarget = null)
10 14
         {
11 15
             return $this->createMock($originalClassName);
Please login to merge, or discard this patch.