Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <thomas.steur@googlemail.com>2014-02-11 00:29:59 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-02-11 00:29:59 +0400
commit279a4d6978dd5ddcbb39b4e703bd6fdfb6a170b7 (patch)
tree103a8bbec1a9c5c5995834649c7778c7e6447cf2 /core/CliMulti.php
parent9cba66f58aa0cd85af5a0277e90c33445095f1bc (diff)
refs #4610 I moved the Lock class to CliMulti as it does not 100% work on windows and is only used in CliMulti so far. As the Lock class can be quite useful and maybe needed in other use cases it would be nice to have it somewhere under core or so as it is not directly related to CLI. We might have to move it later again. Need to find a better solution for windows
Diffstat (limited to 'core/CliMulti.php')
-rw-r--r--core/CliMulti.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/CliMulti.php b/core/CliMulti.php
index 55b41fb6c0..d4c08f38b5 100644
--- a/core/CliMulti.php
+++ b/core/CliMulti.php
@@ -7,12 +7,13 @@
*/
namespace Piwik;
+use Piwik\CliMulti\Lock;
use Piwik\CliMulti\Output;
class CliMulti {
/**
- * @var \Piwik\Lock[]
+ * @var \Piwik\CliMulti\Lock[]
*/
private $pids = array();