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 fa0c8e1 commit faa54cfCopy full SHA for faa54cf
src/AsyncTask.php
@@ -1,5 +1,7 @@
1
<?php
2
3
+declare(strict_types=1);
4
+
5
namespace Vectorial1024\LaravelProcessAsync;
6
7
use Closure;
@@ -47,9 +49,9 @@ class AsyncTask
47
49
* The name of the found timeout command inside GNU coreutils.
48
50
*
51
* It is known that older MacOS environments might have "gtimeout" instead of "timeout".
- * @var bool|null
52
+ * @var string|null
53
*/
- private static bool|null $timeoutCmdName = false;
54
+ private static string|null $timeoutCmdName = null;
55
56
/**
57
* Creates an AsyncTask instance.
0 commit comments