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 0a823dc commit 2733fc7Copy full SHA for 2733fc7
src/Illuminate/Process/FakeInvokedProcess.php
@@ -79,6 +79,16 @@ public function id()
79
return $this->process->processId;
80
}
81
82
+ /**
83
+ * Get the command line for the process.
84
+ *
85
+ * @return string
86
+ */
87
+ public function command()
88
+ {
89
+ return $this->command;
90
+ }
91
+
92
/**
93
* Send a signal to the process.
94
*
src/Illuminate/Process/InvokedProcess.php
@@ -36,6 +36,16 @@ public function id()
36
return $this->process->getPid();
37
38
39
40
41
42
43
44
45
46
+ return $this->process->getCommandLine();
47
48
49
50
51
0 commit comments