X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Flib%2FDrupal%2FComponent%2FDiff%2FMappedDiff.php;h=466e8f09a6bf182d76dbcfeb905787945ee816e6;hb=1c1cb0980bfa6caf0c24cce671b6bb541dc87583;hp=d49cc0df6227d6924b0112ec3923ceec81eddefa;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website diff --git a/web/core/lib/Drupal/Component/Diff/MappedDiff.php b/web/core/lib/Drupal/Component/Diff/MappedDiff.php index d49cc0df6..466e8f09a 100644 --- a/web/core/lib/Drupal/Component/Diff/MappedDiff.php +++ b/web/core/lib/Drupal/Component/Diff/MappedDiff.php @@ -19,16 +19,17 @@ class MappedDiff extends Diff { * case-insensitive diffs, or diffs which ignore * changes in white-space. * - * @param $from_lines array An array of strings. + * @param array $from_lines + * An array of strings. * (Typically these are lines from a file.) - * @param $to_lines array An array of strings. - * @param $mapped_from_lines array This array should - * have the same size number of elements as $from_lines. - * The elements in $mapped_from_lines and - * $mapped_to_lines are what is actually compared - * when computing the diff. - * @param $mapped_to_lines array This array should - * have the same number of elements as $to_lines. + * @param array $to_lines + * An array of strings. + * @param array $mapped_from_lines + * This array should have the same size number of elements as $from_lines. + * The elements in $mapped_from_lines and $mapped_to_lines are what is + * actually compared when computing the diff. + * @param array $mapped_to_lines + * This array should have the same number of elements as $to_lines. */ public function __construct($from_lines, $to_lines, $mapped_from_lines, $mapped_to_lines) {