Completed
Pull Request — master (#97)
by Deven
18:18
created
vendor/phpunit/phpunit/tests/_files/BankAccount.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
      *
85 85
      * @param  integer $statements        Number of statements.
86 86
      * @param  integer $coveredStatements Number of covered statements.
87
-     * @return float
87
+     * @return integer
88 88
      */
89 89
     protected function calculateLineCoverage($statements, $coveredStatements)
90 90
     {
Please login to merge, or discard this patch.
vendor/phpunit/phpunit/tests/Framework/AssertTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -98,6 +98,9 @@
 block discarded – undo
98 98
         );
99 99
     }
100 100
 
101
+    /**
102
+     * @param string $content
103
+     */
101 104
     private function createDOMDocument($content)
102 105
     {
103 106
         $document = new DOMDocument;
Please login to merge, or discard this patch.
vendor/psy/psysh/src/Psy/Command/ListCommand/ClassConstantEnumerator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
      *
81 81
      * @param array $properties
82 82
      *
83
-     * @return array
83
+     * @return \ReflectionClass
84 84
      */
85 85
     protected function prepareProperties(array $properties, $target = null)
86 86
     {
Please login to merge, or discard this patch.
vendor/psy/psysh/src/Psy/Command/ListCommand/MethodEnumerator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
      *
81 81
      * @param array $properties
82 82
      *
83
-     * @return array
83
+     * @return \ReflectionClass
84 84
      */
85 85
     protected function prepareProperties(array $properties, $target = null)
86 86
     {
Please login to merge, or discard this patch.
vendor/psy/psysh/src/Psy/Command/WtfCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1101,7 +1101,7 @@
 block discarded – undo
1101 1101
 
1102 1102
     /**
1103 1103
      * Returns MySQL column types (inherited and MySQL specified).
1104
-     * @return array
1104
+     * @return string[]
1105 1105
      */
1106 1106
     public function getColumnTypes()
1107 1107
     {
Please login to merge, or discard this patch.
vendor/symfony/console/Tests/Helper/LegacyProgressHelperTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -592,6 +592,9 @@
 block discarded – undo
592 592
         return new StreamOutput(fopen('php://memory', 'r+', false), $verbosity, $decorated);
593 593
     }
594 594
 
595
+    /**
596
+     * @param string $expected
597
+     */
595 598
     protected function generateOutput($expected)
596 599
     {
597 600
         $count = substr_count($expected, "\n");
Please login to merge, or discard this patch.