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:
authormattab <matthieu.aubry@gmail.com>2013-10-08 09:24:28 +0400
committermattab <matthieu.aubry@gmail.com>2013-10-08 09:24:28 +0400
commit1fa8da9b963e99e08c829fe6491e8ccf2d1054e2 (patch)
tree137c50850a5f21f1651f8066d4bd381a661e1987 /core/AssetManager.php
parentfcbef99dbf93df94ff5ed4cfaa5eeebfcf4aac14 (diff)
Applying phpstorm code style PSR refs #3771
Diffstat (limited to 'core/AssetManager.php')
-rw-r--r--core/AssetManager.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/AssetManager.php b/core/AssetManager.php
index c92a0508ed..c75f9435a7 100644
--- a/core/AssetManager.php
+++ b/core/AssetManager.php
@@ -191,7 +191,7 @@ class AssetManager
*/
public static function getCompiledBaseCss()
{
- $file = '/plugins/Zeitgeist/stylesheets/base.less';
+ $file = '/plugins/Zeitgeist/stylesheets/base.less';
$less = self::makeLess();
$lessContent = self::getCssContentFromFile($file, $less);
$css = $less->compile($lessContent);
@@ -306,10 +306,10 @@ class AssetManager
// We look for the currently enabled theme and add CSS from the json
$theme = PluginsManager::getInstance()->getThemeEnabled();
- if($theme && $theme->getPluginName() != PluginsManager::DEFAULT_THEME) {
+ if ($theme && $theme->getPluginName() != PluginsManager::DEFAULT_THEME) {
$info = $theme->getInformation();
- if(isset($info['stylesheet'])) {
- $themeStylesheetFile = 'plugins/'. $theme->getPluginName() . '/' . $info['stylesheet'];
+ if (isset($info['stylesheet'])) {
+ $themeStylesheetFile = 'plugins/' . $theme->getPluginName() . '/' . $info['stylesheet'];
}
$stylesheets[] = $themeStylesheetFile;
}
@@ -359,7 +359,7 @@ class AssetManager
private static function generateMergedJsFile()
{
$mergedContent = "";
-
+
// Loop through each js file
$files = self::getJsFiles();
foreach ($files as $file) {