Completed
Push — master ( c991a0...c321b2 )
by Fabian
12:45
created
src/PhpMerge/MergeConflict.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -71,10 +71,9 @@
 block discarded – undo
71 71
      *   The conflicting line changes from the first source.
72 72
      * @param string[] $local
73 73
      *   The conflicting line changes from the second source.
74
-     * @param int $line
75
-     *   The line number in the original text.
76
-     * @param int $merged
74
+     * @param integer $mergedLine
77 75
      *   The line number in the merged text.
76
+     * @param integer $baseLine
78 77
      */
79 78
     public function __construct($base, $remote, $local, $baseLine, $mergedLine)
80 79
     {
Please login to merge, or discard this patch.
src/PhpMerge/PhpMerge.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
      * @param MergeConflict[] $conflicts
97 97
      *   The merge conflicts.
98 98
      *
99
-     * @return string[]
99
+     * @return string
100 100
      *   The merged text.
101 101
      */
102 102
     protected static function mergeHunks($base, $remote, $local, &$conflicts = [])
Please login to merge, or discard this patch.