@@ -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 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. ' ,
191
+ $HTTP_RAW_POST_DATA is deprecated from PHP 5.6 onwards and will be removed in PHP 7.0.
192
+ This will stop the installer from running.
193
+ Please open your php.ini file and set always_populate_raw_post_data to -1 .
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 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. ' ,
227
+ $HTTP_RAW_POST_DATA is deprecated from PHP 5.6 onwards and will be removed in PHP 7.0.
228
+ This will stop the installer from running.
229
+ Please open your php.ini file and set always_populate_raw_post_data to -1 .
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 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. ' ,
255
+ $HTTP_RAW_POST_DATA is deprecated from PHP 5.6 onwards and will be removed in PHP 7.0.
256
+ This will stop the installer from running.
257
+ Please open your php.ini file and set always_populate_raw_post_data to -1 .
258
+ If you need more help please call your hosting provider. ' ,
259
259
PHP_VERSION
260
260
);
261
261
$ expected = [
0 commit comments