X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fdiff%2FUnifiedDiffFormatter.php;h=32a76055ee4a7a4f356660b93a0239037bb10f01;hb=e369f66d0029594d1ce289f7a505d3ce20250828;hp=0a86ccc0ab1de0d79a34acfe25f3690e2296fbfb;hpb=e92d87c26c408441d8c229fc1e9c7e0bcd93898a;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/diff/UnifiedDiffFormatter.php b/includes/diff/UnifiedDiffFormatter.php index 0a86ccc0ab..32a76055ee 100644 --- a/includes/diff/UnifiedDiffFormatter.php +++ b/includes/diff/UnifiedDiffFormatter.php @@ -29,6 +29,7 @@ * @ingroup DifferenceEngine */ class UnifiedDiffFormatter extends DiffFormatter { + /** @var int */ protected $leadingContextLines = 2; @@ -36,22 +37,22 @@ class UnifiedDiffFormatter extends DiffFormatter { protected $trailingContextLines = 2; /** - * @param $lines + * @param string[] $lines */ protected function added( $lines ) { $this->lines( $lines, '+' ); } /** - * @param $lines + * @param string[] $lines */ protected function deleted( $lines ) { $this->lines( $lines, '-' ); } /** - * @param $orig - * @param $closing + * @param string[] $orig + * @param string[] $closing */ protected function changed( $orig, $closing ) { $this->deleted( $orig ); @@ -59,13 +60,15 @@ class UnifiedDiffFormatter extends DiffFormatter { } /** - * @param $xbeg - * @param $xlen - * @param $ybeg - * @param $ylen + * @param int $xbeg + * @param int $xlen + * @param int $ybeg + * @param int $ylen + * * @return string */ protected function blockHeader( $xbeg, $xlen, $ybeg, $ylen ) { return "@@ -$xbeg,$xlen +$ybeg,$ylen @@"; } + }