Skip to content

Commit

Permalink
Add proper wrapper around Symfony/Process dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
mneudert committed Sep 2, 2024
1 parent 86ede5c commit 8523161
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion core/CliMulti/ProcessSymfony.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace Piwik\CliMulti;

use Symfony\Component\Process\Process;
use Piwik\Process;

/**
* Wrapper for Symfony Process class
Expand Down
20 changes: 20 additions & 0 deletions core/Process.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php

/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/

namespace Piwik;

use Symfony\Component\Process\Process as SymfonyProcess;

/**
* Wrapper for Symfony process class
*/
class Process extends SymfonyProcess
{
//
}

0 comments on commit 8523161

Please sign in to comment.