CliPhp.php
1 year ago
Output.php
2 years ago
OutputInterface.php
2 years ago
Process.php
1 year ago
ProcessSymfony.php
1 year ago
RequestCommand.php
1 year ago
StaticOutput.php
1 year ago
ProcessSymfony.php
30 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Matomo - free/libre analytics platform |
| 5 | * |
| 6 | * @link https://matomo.org |
| 7 | * @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later |
| 8 | */ |
| 9 | namespace Piwik\CliMulti; |
| 10 | |
| 11 | use Piwik\Process; |
| 12 | /** |
| 13 | * Wrapper for Symfony Process class |
| 14 | */ |
| 15 | class ProcessSymfony extends Process |
| 16 | { |
| 17 | /** |
| 18 | * @var string|null |
| 19 | */ |
| 20 | private $commandId; |
| 21 | public function getCommandId() : ?string |
| 22 | { |
| 23 | return $this->commandId; |
| 24 | } |
| 25 | public function setCommandId(string $commandId) : void |
| 26 | { |
| 27 | $this->commandId = $commandId; |
| 28 | } |
| 29 | } |
| 30 |