From 6e3fb9aababa451633c87538becd0ab718bbd54b Mon Sep 17 00:00:00 2001 From: Manuel Raynaud Date: Wed, 19 Jun 2013 16:21:15 +0200 Subject: [PATCH] add some phpdoc --- .../Compiler/RegisterSmartyPluginPass.php | 8 ++++ .../Core/Template/Assets/AsseticManager.php | 38 +++++++++---------- 2 files changed, 27 insertions(+), 19 deletions(-) diff --git a/core/lib/Thelia/Core/DependencyInjection/Compiler/RegisterSmartyPluginPass.php b/core/lib/Thelia/Core/DependencyInjection/Compiler/RegisterSmartyPluginPass.php index edb979bc6..0de6ab1bb 100644 --- a/core/lib/Thelia/Core/DependencyInjection/Compiler/RegisterSmartyPluginPass.php +++ b/core/lib/Thelia/Core/DependencyInjection/Compiler/RegisterSmartyPluginPass.php @@ -28,6 +28,14 @@ use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\Reference; +/** + * + * This compiler allow adding plugins in smarty parser using config files + * + * Class RegisterSmartyPluginPass + * @package Thelia\Core\DependencyInjection\Compiler + */ + class RegisterSmartyPluginPass implements CompilerPassInterface { /** diff --git a/core/lib/Thelia/Core/Template/Assets/AsseticManager.php b/core/lib/Thelia/Core/Template/Assets/AsseticManager.php index b58624b37..8f8df9698 100644 --- a/core/lib/Thelia/Core/Template/Assets/AsseticManager.php +++ b/core/lib/Thelia/Core/Template/Assets/AsseticManager.php @@ -1,24 +1,24 @@ . */ -/* */ +/* */ +/* Thelia */ +/* */ +/* Copyright (c) OpenStudio */ +/* email : info@thelia.net */ +/* web : http://www.thelia.net */ +/* */ +/* This program is free software; you can redistribute it and/or modify */ +/* it under the terms of the GNU General Public License as published by */ +/* the Free Software Foundation; either version 3 of the License */ +/* */ +/* This program is distributed in the hope that it will be useful, */ +/* but WITHOUT ANY WARRANTY; without even the implied warranty of */ +/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */ +/* GNU General Public License for more details. */ +/* */ +/* You should have received a copy of the GNU General Public License */ +/* along with this program. If not, see . */ +/* */ /*************************************************************************************/ namespace Thelia\Core\Template\Assets;