From 5ecaa002b17195abdb6393547ad51e3efc8693ae Mon Sep 17 00:00:00 2001
From: jrfnl <jrfnl@users.noreply.github.com>
Date: Fri, 12 May 2023 01:25:13 +0200
Subject: [PATCH] Text_Diff_Engine_native: declare all properties
---
src/wp-includes/Text/Diff/Engine/native.php | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/src/wp-includes/Text/Diff/Engine/native.php b/src/wp-includes/Text/Diff/Engine/native.php
index e6fa9758a3..b3d8441a58 100644
a
|
b
|
|
28 | 28 | */ |
29 | 29 | class Text_Diff_Engine_native { |
30 | 30 | |
| 31 | public $xchanged; |
| 32 | public $ychanged; |
| 33 | public $xv; |
| 34 | public $yv; |
| 35 | public $xind; |
| 36 | public $yind; |
| 37 | public $seq; |
| 38 | public $in_seq; |
| 39 | public $lcs; |
| 40 | |
31 | 41 | function diff($from_lines, $to_lines) |
32 | 42 | { |
33 | 43 | array_walk($from_lines, array('Text_Diff', 'trimNewlines')); |