We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32b37c3 commit c3b0411Copy full SHA for c3b0411
Command/ServerCommand.php
@@ -27,6 +27,10 @@ public function isEnabled()
27
return false;
28
}
29
30
+ if (!class_exists('Symfony\Component\Process\Process')) {
31
+ return false;
32
+ }
33
+
34
return parent::isEnabled();
35
36
Command/ServerRunCommand.php
@@ -25,18 +25,6 @@
25
*/
26
class ServerRunCommand extends ServerCommand
{
- /**
- * {@inheritdoc}
- */
- public function isEnabled()
- {
- if (PHP_VERSION_ID < 50400 || defined('HHVM_VERSION')) {
- return false;
- }
-
37
- return parent::isEnabled();
38
39
40
/**
41
* {@inheritdoc}
42
0 commit comments