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 d17ed65 commit 81f41c9Copy full SHA for 81f41c9
tests/Tasks/SleepingAsyncTask.php
@@ -6,15 +6,15 @@
6
7
class SleepingAsyncTask implements AsyncTaskInterface
8
{
9
- // just sleeps for 2 seconds, and finish
+ // just sleeps for 5 seconds, and finish
10
11
public function __construct()
12
13
}
14
15
public function execute(): void
16
17
- sleep(2);
+ sleep(5);
18
19
20
public function handleTimeout(): void
0 commit comments