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:
Diffstat (limited to 'core/Session/Namespace.php')
-rw-r--r--core/Session/Namespace.php31
1 files changed, 15 insertions, 16 deletions
diff --git a/core/Session/Namespace.php b/core/Session/Namespace.php
index 582363de4c..3c18aa06db 100644
--- a/core/Session/Namespace.php
+++ b/core/Session/Namespace.php
@@ -1,34 +1,33 @@
<?php
/**
* Piwik - Open source web analytics
- *
+ *
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
- *
+ *
* @category Piwik
* @package Piwik
*/
/**
* Session namespace.
- *
+ *
* @package Piwik
* @subpackage Piwik_Session
*/
class Piwik_Session_Namespace extends Zend_Session_Namespace
{
- /**
- * @param string $namespace
- * @param bool $singleInstance
- */
- public function __construct($namespace = 'Default', $singleInstance = false)
- {
- if(Piwik_Common::isPhpCliMode())
- {
- self::$_readable = true;
- return;
- }
+ /**
+ * @param string $namespace
+ * @param bool $singleInstance
+ */
+ public function __construct($namespace = 'Default', $singleInstance = false)
+ {
+ if (Piwik_Common::isPhpCliMode()) {
+ self::$_readable = true;
+ return;
+ }
- parent::__construct($namespace, $singleInstance);
- }
+ parent::__construct($namespace, $singleInstance);
+ }
}