PluginProbe
TablePress – Tables in WordPress made easy / 3.2
TablePress – Tables in WordPress made easy v3.2
3.3.4 3.3.3 3.3.2 3.3.1 trunk 1.12 1.14 1.9.2 2.0.4 2.1.7 2.1.8 2.2 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.3 2.3.1 2.3.2 2.4 2.4.1 2.4.2 2.4.3 2.4.4 All 44 releases
← All changes | classes/class-evaluate-legacy.php +3 -4 2.33.2 View file →
@@ -26,11 +26,10 @@
26 26 /**
27 27 * Instance of the EvalMath class.
28 28 *
29 29 * @since 1.0.0
30 - * @var EvalMath
31 30 */
32 - protected $evalmath;
31 + protected \EvalMath $evalmath;
33 32
34 33 /**
35 34 * Table data in which formulas shall be evaluated.
36 35 *
@@ -36,9 +35,9 @@
36 35 *
37 36 * @since 1.5.0
38 37 * @var array<int, array<int, string>>
39 38 */
40 - protected $table_data;
39 + protected array $table_data;
41 40
42 41 /**
43 42 * Storage for cell ranges that have been replaced in formulas.
44 43 *
@@ -44,9 +43,9 @@
44 43 *
45 44 * @since 1.0.0
46 45 * @var array<string, string>
47 46 */
48 - protected $known_ranges = array();
47 + protected array $known_ranges = array();
49 48
50 49 /**
51 50 * Initialize the Formula Evaluation class, include the EvalMath class.
52 51 *