Skip to content
Snippets Groups Projects
Commit c84bb00a authored by Oleh Posyniak's avatar Oleh Posyniak
Browse files

MAGETWO-56343: Setup tool check PHP extensions does not check for all needed extensions

parent e972fc8b
Branches
No related merge requests found
......@@ -328,7 +328,7 @@ class PhpReadinessCheck
$requiredFunctions = [
[
'name' => 'imagecreatefromjpeg',
'message' => 'You must have installed GD library wuth --with-jpeg-dir=DIR option.',
'message' => 'You must have installed GD library with --with-jpeg-dir=DIR option.',
'helpUrl' => 'http://php.net/manual/en/image.installation.php',
],
];
......
......@@ -223,7 +223,7 @@ class PhpReadinessCheckTest extends \PHPUnit_Framework_TestCase
'error' => false,
],
'missed_function_imagecreatefromjpeg' => [
'message' => 'You must have installed GD library wuth --with-jpeg-dir=DIR option.',
'message' => 'You must have installed GD library with --with-jpeg-dir=DIR option.',
'helpUrl' => 'http://php.net/manual/en/image.installation.php',
'error' => false,
],
......@@ -268,7 +268,7 @@ class PhpReadinessCheckTest extends \PHPUnit_Framework_TestCase
'error' => true,
],
'missed_function_imagecreatefromjpeg' => [
'message' => 'You must have installed GD library wuth --with-jpeg-dir=DIR option.',
'message' => 'You must have installed GD library with --with-jpeg-dir=DIR option.',
'helpUrl' => 'http://php.net/manual/en/image.installation.php',
'error' => false,
],
......@@ -313,7 +313,7 @@ class PhpReadinessCheckTest extends \PHPUnit_Framework_TestCase
}
$expected['data']['missed_function_imagecreatefromjpeg'] = [
'message' => 'You must have installed GD library wuth --with-jpeg-dir=DIR option.',
'message' => 'You must have installed GD library with --with-jpeg-dir=DIR option.',
'helpUrl' => 'http://php.net/manual/en/image.installation.php',
'error' => false,
];
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment