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:
authorfabiocarneiro <fahecs@gmail.com>2015-05-27 12:56:17 +0300
committerfabiocarneiro <fahecs@gmail.com>2015-05-27 12:56:17 +0300
commita2a63d34ebb460174e1a3e8d8022fe3e3ab4b469 (patch)
treefbfc480352bc711bc03f12849824507e56b5034a /core/FrontController.php
parentb2f5b5489ceca056217fc6663ec6c2c6b052cd42 (diff)
fix core folder with php-cs-fixer for psr-2
Diffstat (limited to 'core/FrontController.php')
-rw-r--r--core/FrontController.php5
1 files changed, 1 insertions, 4 deletions
diff --git a/core/FrontController.php b/core/FrontController.php
index 31a447da36..4b47d9024b 100644
--- a/core/FrontController.php
+++ b/core/FrontController.php
@@ -11,15 +11,12 @@ namespace Piwik;
use Exception;
use Piwik\API\Request;
-use Piwik\API\ResponseBuilder;
use Piwik\Container\StaticContainer;
use Piwik\Exception\AuthenticationFailedException;
use Piwik\Exception\DatabaseSchemaIsNewerThanCodebaseException;
use Piwik\Http\ControllerResolver;
use Piwik\Http\Router;
-use Piwik\Plugin\Report;
use Piwik\Plugins\CoreAdminHome\CustomLogo;
-use Piwik\Session;
/**
* This singleton dispatches requests to the appropriate plugin Controller.
@@ -170,7 +167,7 @@ class FrontController extends Singleton
public static function setUpSafeMode()
{
- register_shutdown_function(array('\\Piwik\\FrontController','triggerSafeModeWhenError'));
+ register_shutdown_function(array('\\Piwik\\FrontController', 'triggerSafeModeWhenError'));
}
public static function triggerSafeModeWhenError()