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 e86580a commit acabccaCopy full SHA for acabcca
src/Helper/Shell.php
@@ -122,7 +122,7 @@ public function checkTimeout()
122
return;
123
}
124
125
- $execution_duration = microtime(true) - $this->processStartTime;
+ $execution_duration = \microtime(true) - $this->processStartTime;
126
127
if ($execution_duration > $this->processTimeoutPeriod) {
128
$this->stop();
@@ -149,7 +149,7 @@ public function execute($async = false)
149
150
$this->setInput();
151
$this->updateProcessStatus();
152
- $this->processStartTime = microtime(true);
+ $this->processStartTime = \microtime(true);
153
154
if ($this->async = $async) {
155
$this->setOutputStreamNonBlocking();
0 commit comments