1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
|
From: Guilhem Moulin <guilhem@debian.org>
Date: Tue, 11 Jan 2022 19:06:24 +0100
Subject: Fix FTBFS with PHP8.1.
This patch merely reorders the object fields to match PHP8.1 object dump
output.
Origin: Debian
Bug-Debian: https://bugs.debian.org/1000593
---
tests/console_commandline_addargument.phpt | 38 +++++++++---------
tests/console_commandline_addoption.phpt | 62 +++++++++++++++---------------
2 files changed, 50 insertions(+), 50 deletions(-)
diff --git a/tests/console_commandline_addargument.phpt b/tests/console_commandline_addargument.phpt
index 7f7f689..6203d4d 100644
--- a/tests/console_commandline_addargument.phpt
+++ b/tests/console_commandline_addargument.phpt
@@ -28,13 +28,6 @@ $parser->addArgument('Some invalid name');
array(4) {
["arg1"]=>
object(Console_CommandLine_Argument)#%d (8) {
- ["multiple"]=>
- bool(false)
- ["optional"]=>
- bool(false)
- ["choices"]=>
- array(0) {
- }
["name"]=>
string(4) "arg1"
["help_name"]=>
@@ -46,16 +39,16 @@ array(4) {
["messages"]=>
array(0) {
}
- }
- ["arg2"]=>
- object(Console_CommandLine_Argument)#%d (8) {
["multiple"]=>
- bool(true)
+ bool(false)
["optional"]=>
bool(false)
["choices"]=>
array(0) {
}
+ }
+ ["arg2"]=>
+ object(Console_CommandLine_Argument)#%d (8) {
["name"]=>
string(4) "arg2"
["help_name"]=>
@@ -67,9 +60,6 @@ array(4) {
["messages"]=>
array(0) {
}
- }
- ["arg3"]=>
- object(Console_CommandLine_Argument)#%d (8) {
["multiple"]=>
bool(true)
["optional"]=>
@@ -77,6 +67,9 @@ array(4) {
["choices"]=>
array(0) {
}
+ }
+ ["arg3"]=>
+ object(Console_CommandLine_Argument)#%d (8) {
["name"]=>
string(4) "arg3"
["help_name"]=>
@@ -88,16 +81,16 @@ array(4) {
["messages"]=>
array(0) {
}
- }
- ["arg4"]=>
- object(Console_CommandLine_Argument)#%d (8) {
["multiple"]=>
- bool(false)
- ["optional"]=>
bool(true)
+ ["optional"]=>
+ bool(false)
["choices"]=>
array(0) {
}
+ }
+ ["arg4"]=>
+ object(Console_CommandLine_Argument)#%d (8) {
["name"]=>
string(4) "arg4"
["help_name"]=>
@@ -109,6 +102,13 @@ array(4) {
["messages"]=>
array(0) {
}
+ ["multiple"]=>
+ bool(false)
+ ["optional"]=>
+ bool(true)
+ ["choices"]=>
+ array(0) {
+ }
}
}
diff --git a/tests/console_commandline_addoption.phpt b/tests/console_commandline_addoption.phpt
index 1386121..5e861a1 100644
--- a/tests/console_commandline_addoption.phpt
+++ b/tests/console_commandline_addoption.phpt
@@ -32,6 +32,17 @@ var_dump($parser->options);
array(4) {
["opt1"]=>
object(Console_CommandLine_Option)#%d (14) {
+ ["name"]=>
+ string(4) "opt1"
+ ["help_name"]=>
+ string(4) "opt1"
+ ["description"]=>
+ NULL
+ ["default"]=>
+ NULL
+ ["messages"]=>
+ array(0) {
+ }
["short_name"]=>
string(2) "-a"
["long_name"]=>
@@ -52,20 +63,20 @@ array(4) {
bool(false)
[%s]=>
NULL
+ }
+ ["opt2"]=>
+ object(Console_CommandLine_Option)#%d (14) {
["name"]=>
- string(4) "opt1"
+ string(4) "opt2"
["help_name"]=>
- string(4) "opt1"
+ string(3) "bar"
["description"]=>
- NULL
+ string(19) "description of opt2"
["default"]=>
- NULL
+ int(2)
["messages"]=>
array(0) {
}
- }
- ["opt2"]=>
- object(Console_CommandLine_Option)#%d (14) {
["short_name"]=>
string(2) "-b"
["long_name"]=>
@@ -92,20 +103,20 @@ array(4) {
bool(true)
[%s]=>
NULL
+ }
+ ["list_opt2"]=>
+ object(Console_CommandLine_Option)#%d (14) {
["name"]=>
- string(4) "opt2"
+ string(9) "list_opt2"
["help_name"]=>
- string(3) "bar"
+ string(9) "list_opt2"
["description"]=>
- string(19) "description of opt2"
+ string(35) "lists valid choices for option opt2"
["default"]=>
- int(2)
+ NULL
["messages"]=>
array(0) {
}
- }
- ["list_opt2"]=>
- object(Console_CommandLine_Option)#%d (14) {
["short_name"]=>
NULL
["long_name"]=>
@@ -135,20 +146,20 @@ array(4) {
bool(false)
[%s]=>
NULL
+ }
+ ["opt3"]=>
+ object(Console_CommandLine_Option)#%d (14) {
["name"]=>
- string(9) "list_opt2"
+ string(4) "opt3"
["help_name"]=>
- string(9) "list_opt2"
+ string(4) "opt3"
["description"]=>
- string(35) "lists valid choices for option opt2"
+ string(19) "description of opt3"
["default"]=>
NULL
["messages"]=>
array(0) {
}
- }
- ["opt3"]=>
- object(Console_CommandLine_Option)#%d (14) {
["short_name"]=>
NULL
["long_name"]=>
@@ -169,16 +180,5 @@ array(4) {
bool(false)
[%s]=>
NULL
- ["name"]=>
- string(4) "opt3"
- ["help_name"]=>
- string(4) "opt3"
- ["description"]=>
- string(19) "description of opt3"
- ["default"]=>
- NULL
- ["messages"]=>
- array(0) {
- }
}
}
|