@@ -188,10 +188,10 @@ public function testCheckPhpSettings()
188
188
);
189
189
$ rawPostMessage = sprintf (
190
190
'Your PHP Version is %s, but always_populate_raw_post_data = -1.
191
- $HTTP_RAW_POST_DATA is deprecated from PHP 5.6 onwards and will stop the installer from running .
192
- Please open your php.ini file and set always_populate_raw_post_data to -1 .
193
- If you need more help please call your hosting provider .
194
- ' ,
191
+ $HTTP_RAW_POST_DATA is deprecated from PHP 5.6 onwards and is removed from PHP 7.0 onwards .
192
+ This will stop the installer from running .
193
+ Please open your php.ini file and remove always_populate_raw_post_data .
194
+ If you need more help please call your hosting provider. ' ,
195
195
PHP_VERSION
196
196
);
197
197
$ expected = [
@@ -224,10 +224,10 @@ public function testCheckPhpSettingsFailed()
224
224
);
225
225
$ rawPostMessage = sprintf (
226
226
'Your PHP Version is %s, but always_populate_raw_post_data = -1.
227
- $HTTP_RAW_POST_DATA is deprecated from PHP 5.6 onwards and will stop the installer from running .
228
- Please open your php.ini file and set always_populate_raw_post_data to -1 .
229
- If you need more help please call your hosting provider .
230
- ' ,
227
+ $HTTP_RAW_POST_DATA is deprecated from PHP 5.6 onwards and is removed from PHP 7.0 onwards .
228
+ This will stop the installer from running .
229
+ Please open your php.ini file and remove always_populate_raw_post_data .
230
+ If you need more help please call your hosting provider. ' ,
231
231
PHP_VERSION
232
232
);
233
233
$ expected = [
@@ -252,10 +252,10 @@ public function testCheckPhpSettingsNoXDebug()
252
252
$ this ->phpInfo ->expects ($ this ->once ())->method ('getCurrent ' )->willReturn ([]);
253
253
$ rawPostMessage = sprintf (
254
254
'Your PHP Version is %s, but always_populate_raw_post_data = -1.
255
- $HTTP_RAW_POST_DATA is deprecated from PHP 5.6 onwards and will stop the installer from running .
256
- Please open your php.ini file and set always_populate_raw_post_data to -1 .
257
- If you need more help please call your hosting provider .
258
- ' ,
255
+ $HTTP_RAW_POST_DATA is deprecated from PHP 5.6 onwards and is removed from PHP 7.0 onwards .
256
+ This will stop the installer from running .
257
+ Please open your php.ini file and remove always_populate_raw_post_data .
258
+ If you need more help please call your hosting provider. ' ,
259
259
PHP_VERSION
260
260
);
261
261
$ expected = [
0 commit comments