From cfbc579022065a60509c86768d8bb83b14b3341c Mon Sep 17 00:00:00 2001 From: gmorel Date: Mon, 30 Dec 2013 21:37:26 +0100 Subject: [PATCH] Coupon : Fix mistake with chmod, file mode set as 644 as it originally was Remove submodule --- core/lib/Thelia/Action/Coupon.php | 4 ---- .../Thelia/Condition/ConditionCollection.php | 4 ---- .../Thelia/Condition/ConditionEvaluator.php | 4 ---- core/lib/Thelia/Condition/ConditionFactory.php | 4 ---- .../Thelia/Condition/ConditionOrganizer.php | 4 ---- .../Condition/ConditionOrganizerInterface.php | 4 ---- .../Implementation/ConditionAbstract.php | 4 ---- .../Implementation/ConditionInterface.php | 4 ---- .../Implementation/MatchForEveryone.php | 4 ---- .../Implementation/MatchForTotalAmount.php | 4 ---- .../Implementation/MatchForXArticles.php | 4 ---- core/lib/Thelia/Condition/Operators.php | 4 ---- .../Thelia/Condition/SerializableCondition.php | 4 ---- .../Controller/Admin/CouponController.php | 18 +++++++++++++----- .../Compiler/RegisterCouponConditionPass.php | 4 ---- .../Compiler/RegisterCouponPass.php | 4 ---- .../Core/Event/Coupon/CouponConsumeEvent.php | 4 ---- .../Event/Coupon/CouponCreateOrUpdateEvent.php | 8 +------- core/lib/Thelia/Core/Template/Loop/Coupon.php | 4 ---- core/lib/Thelia/Coupon/BaseFacade.php | 4 ---- core/lib/Thelia/Coupon/CouponFactory.php | 4 ---- core/lib/Thelia/Coupon/CouponManager.php | 4 ---- core/lib/Thelia/Coupon/FacadeInterface.php | 4 ---- core/lib/Thelia/Coupon/Type/CouponAbstract.php | 4 ---- .../lib/Thelia/Coupon/Type/CouponInterface.php | 4 ---- core/lib/Thelia/Coupon/Type/RemoveXAmount.php | 4 ---- core/lib/Thelia/Coupon/Type/RemoveXPercent.php | 4 ---- .../Exception/CouponExpiredException.php | 4 ---- .../Exception/InvalidConditionException.php | 4 ---- .../InvalidConditionOperatorException.php | 4 ---- .../InvalidConditionValueException.php | 4 ---- .../Exception/MissingFacadeException.php | 4 ---- .../Exception/NotImplementedException.php | 4 ---- core/lib/Thelia/Form/CouponCreationForm.php | 4 ---- core/lib/Thelia/Model/Coupon.php | 4 ---- .../Condition/ConditionCollectionTest.php | 4 ---- .../Tests/Condition/ConditionEvaluatorTest.php | 4 ---- .../Tests/Condition/ConditionFactoryTest.php | 4 ---- .../Implementation/MatchForEveryoneTest.php | 4 ---- .../Implementation/MatchForTotalAmountTest.php | 4 ---- .../Implementation/MatchForXArticlesTest.php | 4 ---- .../Thelia/Tests/Condition/OperatorsTest.php | 4 ---- .../lib/Thelia/Tests/Coupon/BaseFacadeTest.php | 4 ---- .../Thelia/Tests/Coupon/CouponFactoryTest.php | 4 ---- .../Thelia/Tests/Coupon/CouponManagerTest.php | 4 ---- .../Tests/Coupon/Type/RemoveXAmountTest.php | 4 ---- .../Tests/Coupon/Type/RemoveXPercentTest.php | 4 ---- 47 files changed, 14 insertions(+), 192 deletions(-) diff --git a/core/lib/Thelia/Action/Coupon.php b/core/lib/Thelia/Action/Coupon.php index c2d6cd559..1bb8fd654 100755 --- a/core/lib/Thelia/Action/Coupon.php +++ b/core/lib/Thelia/Action/Coupon.php @@ -38,10 +38,6 @@ use Thelia\Model\Coupon as CouponModel; use Thelia\Model\CouponQuery; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Process Coupon Events * * @package Coupon diff --git a/core/lib/Thelia/Condition/ConditionCollection.php b/core/lib/Thelia/Condition/ConditionCollection.php index 14b4076f6..c7ec67caf 100644 --- a/core/lib/Thelia/Condition/ConditionCollection.php +++ b/core/lib/Thelia/Condition/ConditionCollection.php @@ -27,10 +27,6 @@ use Symfony\Component\DependencyInjection\ContainerInterface; use Thelia\Condition\Implementation\ConditionInterface; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Manage a set of ConditionInterface * * @package Condition diff --git a/core/lib/Thelia/Condition/ConditionEvaluator.php b/core/lib/Thelia/Condition/ConditionEvaluator.php index 49e566158..992e9ca0d 100644 --- a/core/lib/Thelia/Condition/ConditionEvaluator.php +++ b/core/lib/Thelia/Condition/ConditionEvaluator.php @@ -30,10 +30,6 @@ use Thelia\Condition\ConditionCollection; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Validate Conditions * * @package Condition diff --git a/core/lib/Thelia/Condition/ConditionFactory.php b/core/lib/Thelia/Condition/ConditionFactory.php index b472dcb0f..f7440634c 100644 --- a/core/lib/Thelia/Condition/ConditionFactory.php +++ b/core/lib/Thelia/Condition/ConditionFactory.php @@ -30,10 +30,6 @@ use Thelia\Condition\ConditionCollection; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Manage how Condition could interact with the current application state (Thelia) * * @package Constraint diff --git a/core/lib/Thelia/Condition/ConditionOrganizer.php b/core/lib/Thelia/Condition/ConditionOrganizer.php index f678142ab..ebcff5f7d 100644 --- a/core/lib/Thelia/Condition/ConditionOrganizer.php +++ b/core/lib/Thelia/Condition/ConditionOrganizer.php @@ -24,10 +24,6 @@ namespace Thelia\Condition; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Manage how Condition could interact with each others * * @package Condition diff --git a/core/lib/Thelia/Condition/ConditionOrganizerInterface.php b/core/lib/Thelia/Condition/ConditionOrganizerInterface.php index 00f8d55b8..b34982cc7 100644 --- a/core/lib/Thelia/Condition/ConditionOrganizerInterface.php +++ b/core/lib/Thelia/Condition/ConditionOrganizerInterface.php @@ -24,10 +24,6 @@ namespace Thelia\Condition; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Manage how Condition could interact with each other * * @package Condition diff --git a/core/lib/Thelia/Condition/Implementation/ConditionAbstract.php b/core/lib/Thelia/Condition/Implementation/ConditionAbstract.php index 71bd2f60e..b12dc2bd4 100644 --- a/core/lib/Thelia/Condition/Implementation/ConditionAbstract.php +++ b/core/lib/Thelia/Condition/Implementation/ConditionAbstract.php @@ -34,10 +34,6 @@ use Thelia\Model\Currency; use Thelia\Type\FloatType; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Assist in writing a condition of whether the Condition is applied or not * * @package Constraint diff --git a/core/lib/Thelia/Condition/Implementation/ConditionInterface.php b/core/lib/Thelia/Condition/Implementation/ConditionInterface.php index 10759eaa7..8992c6c82 100644 --- a/core/lib/Thelia/Condition/Implementation/ConditionInterface.php +++ b/core/lib/Thelia/Condition/Implementation/ConditionInterface.php @@ -28,10 +28,6 @@ use Thelia\Core\Translation\Translator; use Thelia\Coupon\FacadeInterface; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Manage how the application checks its state in order to check if it matches the implemented condition * * @package Condition diff --git a/core/lib/Thelia/Condition/Implementation/MatchForEveryone.php b/core/lib/Thelia/Condition/Implementation/MatchForEveryone.php index 22d696339..5438bdd91 100644 --- a/core/lib/Thelia/Condition/Implementation/MatchForEveryone.php +++ b/core/lib/Thelia/Condition/Implementation/MatchForEveryone.php @@ -27,10 +27,6 @@ use InvalidArgumentException; use Thelia\Condition\Implementation\ConditionAbstract; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Allow every one, perform no check * * @package Condition diff --git a/core/lib/Thelia/Condition/Implementation/MatchForTotalAmount.php b/core/lib/Thelia/Condition/Implementation/MatchForTotalAmount.php index 09b63ef00..e4f8f8e74 100644 --- a/core/lib/Thelia/Condition/Implementation/MatchForTotalAmount.php +++ b/core/lib/Thelia/Condition/Implementation/MatchForTotalAmount.php @@ -31,10 +31,6 @@ use Thelia\Model\Currency; use Thelia\Model\CurrencyQuery; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Condition AvailableForTotalAmount * Check if a Checkout total amount match criteria * diff --git a/core/lib/Thelia/Condition/Implementation/MatchForXArticles.php b/core/lib/Thelia/Condition/Implementation/MatchForXArticles.php index f1c1ebaac..c99ed67c9 100644 --- a/core/lib/Thelia/Condition/Implementation/MatchForXArticles.php +++ b/core/lib/Thelia/Condition/Implementation/MatchForXArticles.php @@ -30,10 +30,6 @@ use Thelia\Exception\InvalidConditionOperatorException; use Thelia\Exception\InvalidConditionValueException; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Check a Checkout against its Product number * * @package Condition diff --git a/core/lib/Thelia/Condition/Operators.php b/core/lib/Thelia/Condition/Operators.php index 57be8e0bf..cc687acde 100644 --- a/core/lib/Thelia/Condition/Operators.php +++ b/core/lib/Thelia/Condition/Operators.php @@ -26,10 +26,6 @@ namespace Thelia\Condition; use Thelia\Core\Translation\Translator; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Represent available Operations in condition checking * * @package Constraint diff --git a/core/lib/Thelia/Condition/SerializableCondition.php b/core/lib/Thelia/Condition/SerializableCondition.php index cd2f1de44..d147adbd2 100644 --- a/core/lib/Thelia/Condition/SerializableCondition.php +++ b/core/lib/Thelia/Condition/SerializableCondition.php @@ -24,10 +24,6 @@ namespace Thelia\Condition; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * A condition ready to be serialized and stored in DataBase * * @package Condition diff --git a/core/lib/Thelia/Controller/Admin/CouponController.php b/core/lib/Thelia/Controller/Admin/CouponController.php index 3145a0bec..d4162f80e 100755 --- a/core/lib/Thelia/Controller/Admin/CouponController.php +++ b/core/lib/Thelia/Controller/Admin/CouponController.php @@ -47,10 +47,6 @@ use Thelia\Tools\I18n; use Thelia\Tools\Rest\ResponseRest; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Control View and Action (Model) via Events * * @package Coupon @@ -349,7 +345,19 @@ class CouponController extends BaseAdminController } $couponEvent = new CouponCreateOrUpdateEvent( - $coupon->getCode(), $coupon->getType(), $coupon->getTitle(), array('quantity' => $coupon->getAmount()), $coupon->getShortDescription(), $coupon->getDescription(), $coupon->getIsEnabled(), $coupon->getExpirationDate(), $coupon->getIsAvailableOnSpecialOffers(), $coupon->getIsCumulative(), $coupon->getIsRemovingPostage(), $coupon->getMaxUsage(), $coupon->getLocale() + $coupon->getCode(), + $coupon->getType(), + $coupon->getTitle(), + array('quantity' => $coupon->getAmount()), + $coupon->getShortDescription(), + $coupon->getDescription(), + $coupon->getIsEnabled(), + $coupon->getExpirationDate(), + $coupon->getIsAvailableOnSpecialOffers(), + $coupon->getIsCumulative(), + $coupon->getIsRemovingPostage(), + $coupon->getMaxUsage(), + $coupon->getLocale() ); $couponEvent->setCouponModel($coupon); $couponEvent->setConditions($conditions); diff --git a/core/lib/Thelia/Core/DependencyInjection/Compiler/RegisterCouponConditionPass.php b/core/lib/Thelia/Core/DependencyInjection/Compiler/RegisterCouponConditionPass.php index 7caf79c5e..127d0e334 100755 --- a/core/lib/Thelia/Core/DependencyInjection/Compiler/RegisterCouponConditionPass.php +++ b/core/lib/Thelia/Core/DependencyInjection/Compiler/RegisterCouponConditionPass.php @@ -28,10 +28,6 @@ use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\Reference; /** - * Created by JetBrains PhpStorm. - * Date: 9/05/13 - * Time: 3:24 PM - * * Class RegisterListenersPass * Source code come from Symfony\Bundle\FrameworkBundle\DependencyInjection\Compiler\RegisterKernelListenersPass class * diff --git a/core/lib/Thelia/Core/DependencyInjection/Compiler/RegisterCouponPass.php b/core/lib/Thelia/Core/DependencyInjection/Compiler/RegisterCouponPass.php index cf6f32842..a499c8ed1 100755 --- a/core/lib/Thelia/Core/DependencyInjection/Compiler/RegisterCouponPass.php +++ b/core/lib/Thelia/Core/DependencyInjection/Compiler/RegisterCouponPass.php @@ -28,10 +28,6 @@ use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\Reference; /** - * Created by JetBrains PhpStorm. - * Date: 9/05/13 - * Time: 3:24 PM - * * Class RegisterListenersPass * Source code come from Symfony\Bundle\FrameworkBundle\DependencyInjection\Compiler\RegisterKernelListenersPass class * diff --git a/core/lib/Thelia/Core/Event/Coupon/CouponConsumeEvent.php b/core/lib/Thelia/Core/Event/Coupon/CouponConsumeEvent.php index ace8cb0b7..70b656b92 100644 --- a/core/lib/Thelia/Core/Event/Coupon/CouponConsumeEvent.php +++ b/core/lib/Thelia/Core/Event/Coupon/CouponConsumeEvent.php @@ -25,10 +25,6 @@ namespace Thelia\Core\Event\Coupon; use Thelia\Core\Event\ActionEvent; /** - * Created by JetBrains PhpStorm. - * Date: 8/29/13 - * Time: 3:45 PM - * * Occurring when a Coupon is consumed * * @package Coupon diff --git a/core/lib/Thelia/Core/Event/Coupon/CouponCreateOrUpdateEvent.php b/core/lib/Thelia/Core/Event/Coupon/CouponCreateOrUpdateEvent.php index 6f83d723b..de236ac3c 100644 --- a/core/lib/Thelia/Core/Event/Coupon/CouponCreateOrUpdateEvent.php +++ b/core/lib/Thelia/Core/Event/Coupon/CouponCreateOrUpdateEvent.php @@ -28,10 +28,6 @@ use Thelia\Model\Coupon; use Thelia\Model\Exception\InvalidArgumentException; /** - * Created by JetBrains PhpStorm. - * Date: 8/29/13 - * Time: 3:45 PM - * * Occurring when a Coupon is created or updated * * @package Coupon @@ -107,9 +103,7 @@ class CouponCreateOrUpdateEvent extends ActionEvent * @param int $maxUsage Coupon quantity * @param string $locale Coupon Language code ISO (ex: fr_FR) */ - public function __construct( - $code, $serviceId, $title, array $effects, $shortDescription, $description, $isEnabled, \DateTime $expirationDate, $isAvailableOnSpecialOffers, $isCumulative, $isRemovingPostage, $maxUsage, $locale - ) + public function __construct($code, $serviceId, $title, array $effects, $shortDescription, $description, $isEnabled, \DateTime $expirationDate, $isAvailableOnSpecialOffers, $isCumulative, $isRemovingPostage, $maxUsage, $locale) { $this->code = $code; $this->description = $description; diff --git a/core/lib/Thelia/Core/Template/Loop/Coupon.php b/core/lib/Thelia/Core/Template/Loop/Coupon.php index 2cfe262c3..85a221a29 100755 --- a/core/lib/Thelia/Core/Template/Loop/Coupon.php +++ b/core/lib/Thelia/Core/Template/Loop/Coupon.php @@ -40,10 +40,6 @@ use Thelia\Model\CouponQuery; use Thelia\Type; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Coupon Loop * * @package Thelia\Core\Template\Loop diff --git a/core/lib/Thelia/Coupon/BaseFacade.php b/core/lib/Thelia/Coupon/BaseFacade.php index 9d28be69f..3df562333 100644 --- a/core/lib/Thelia/Coupon/BaseFacade.php +++ b/core/lib/Thelia/Coupon/BaseFacade.php @@ -36,10 +36,6 @@ use Thelia\Model\Currency; use Thelia\Model\CurrencyQuery; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Allow to assist in getting relevant data on the current application state * * @package Coupon diff --git a/core/lib/Thelia/Coupon/CouponFactory.php b/core/lib/Thelia/Coupon/CouponFactory.php index f25fdee15..b157922a2 100644 --- a/core/lib/Thelia/Coupon/CouponFactory.php +++ b/core/lib/Thelia/Coupon/CouponFactory.php @@ -31,10 +31,6 @@ use Thelia\Exception\InvalidConditionException; use Thelia\Model\Coupon; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Generate a CouponInterface * * @package Coupon diff --git a/core/lib/Thelia/Coupon/CouponManager.php b/core/lib/Thelia/Coupon/CouponManager.php index c4eff7888..c11a7e896 100644 --- a/core/lib/Thelia/Coupon/CouponManager.php +++ b/core/lib/Thelia/Coupon/CouponManager.php @@ -29,10 +29,6 @@ use Thelia\Coupon\Type\CouponInterface; use Thelia\Model\Coupon; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Manage how Coupons could interact with a Checkout * * @package Coupon diff --git a/core/lib/Thelia/Coupon/FacadeInterface.php b/core/lib/Thelia/Coupon/FacadeInterface.php index 1d3aabc60..2b78a49d6 100644 --- a/core/lib/Thelia/Coupon/FacadeInterface.php +++ b/core/lib/Thelia/Coupon/FacadeInterface.php @@ -31,10 +31,6 @@ use Thelia\Core\HttpFoundation\Request; use Thelia\Model\Coupon; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Allow to assist in getting relevant data on the current application state * * @package Coupon diff --git a/core/lib/Thelia/Coupon/Type/CouponAbstract.php b/core/lib/Thelia/Coupon/Type/CouponAbstract.php index a10f81e71..5e83afb85 100644 --- a/core/lib/Thelia/Coupon/Type/CouponAbstract.php +++ b/core/lib/Thelia/Coupon/Type/CouponAbstract.php @@ -32,10 +32,6 @@ use Thelia\Condition\ConditionOrganizerInterface; use Thelia\Exception\InvalidConditionException; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Assist in writing a CouponInterface * * @package Coupon diff --git a/core/lib/Thelia/Coupon/Type/CouponInterface.php b/core/lib/Thelia/Coupon/Type/CouponInterface.php index 79721e6e6..a45d6cbab 100644 --- a/core/lib/Thelia/Coupon/Type/CouponInterface.php +++ b/core/lib/Thelia/Coupon/Type/CouponInterface.php @@ -27,10 +27,6 @@ use Thelia\Condition\ConditionCollection; use Thelia\Coupon\FacadeInterface; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Represents a Coupon ready to be processed in a Checkout process * * @package Coupon diff --git a/core/lib/Thelia/Coupon/Type/RemoveXAmount.php b/core/lib/Thelia/Coupon/Type/RemoveXAmount.php index b7fd2f3ac..5de809904 100644 --- a/core/lib/Thelia/Coupon/Type/RemoveXAmount.php +++ b/core/lib/Thelia/Coupon/Type/RemoveXAmount.php @@ -27,10 +27,6 @@ use Thelia\Coupon\FacadeInterface; use Thelia\Coupon\Type\CouponAbstract; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Allow to remove an amount from the checkout total * * @package Coupon diff --git a/core/lib/Thelia/Coupon/Type/RemoveXPercent.php b/core/lib/Thelia/Coupon/Type/RemoveXPercent.php index 9885506b1..7d83de333 100644 --- a/core/lib/Thelia/Coupon/Type/RemoveXPercent.php +++ b/core/lib/Thelia/Coupon/Type/RemoveXPercent.php @@ -28,10 +28,6 @@ use Thelia\Coupon\Type\CouponAbstract; use Thelia\Exception\MissingFacadeException; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * @package Coupon * @author Guillaume MOREL * diff --git a/core/lib/Thelia/Exception/CouponExpiredException.php b/core/lib/Thelia/Exception/CouponExpiredException.php index 271927cb4..3aa912549 100644 --- a/core/lib/Thelia/Exception/CouponExpiredException.php +++ b/core/lib/Thelia/Exception/CouponExpiredException.php @@ -26,10 +26,6 @@ namespace Thelia\Exception; use Thelia\Log\Tlog; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Thrown when an Expired Coupon is tried * * @package Coupon diff --git a/core/lib/Thelia/Exception/InvalidConditionException.php b/core/lib/Thelia/Exception/InvalidConditionException.php index dbc3315c8..89d01a7be 100644 --- a/core/lib/Thelia/Exception/InvalidConditionException.php +++ b/core/lib/Thelia/Exception/InvalidConditionException.php @@ -26,10 +26,6 @@ namespace Thelia\Exception; use Thelia\Log\Tlog; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Thrown when a Condition is badly implemented * * @package Condition diff --git a/core/lib/Thelia/Exception/InvalidConditionOperatorException.php b/core/lib/Thelia/Exception/InvalidConditionOperatorException.php index eaef6b9fc..b336aac9a 100644 --- a/core/lib/Thelia/Exception/InvalidConditionOperatorException.php +++ b/core/lib/Thelia/Exception/InvalidConditionOperatorException.php @@ -26,10 +26,6 @@ namespace Thelia\Exception; use Thelia\Log\Tlog; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Thrown when a Condition receive an invalid Operator * * @package Condition diff --git a/core/lib/Thelia/Exception/InvalidConditionValueException.php b/core/lib/Thelia/Exception/InvalidConditionValueException.php index 46e3d3628..65f94ae3a 100644 --- a/core/lib/Thelia/Exception/InvalidConditionValueException.php +++ b/core/lib/Thelia/Exception/InvalidConditionValueException.php @@ -26,10 +26,6 @@ namespace Thelia\Exception; use Thelia\Log\Tlog; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Thrown when a Condition receives an invalid Parameter * * @package Condition diff --git a/core/lib/Thelia/Exception/MissingFacadeException.php b/core/lib/Thelia/Exception/MissingFacadeException.php index 5616e9575..e717b1457 100644 --- a/core/lib/Thelia/Exception/MissingFacadeException.php +++ b/core/lib/Thelia/Exception/MissingFacadeException.php @@ -26,10 +26,6 @@ namespace Thelia\Exception; use Thelia\Log\Tlog; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Thrown when the Facade is not set * * @package Coupon diff --git a/core/lib/Thelia/Exception/NotImplementedException.php b/core/lib/Thelia/Exception/NotImplementedException.php index 1240ea82b..96b2117c8 100644 --- a/core/lib/Thelia/Exception/NotImplementedException.php +++ b/core/lib/Thelia/Exception/NotImplementedException.php @@ -26,10 +26,6 @@ namespace Thelia\Exception; use Symfony\Component\DependencyInjection\Exception\BadMethodCallException; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Thrown when an Abstract method has not been implemented * * @package Exception diff --git a/core/lib/Thelia/Form/CouponCreationForm.php b/core/lib/Thelia/Form/CouponCreationForm.php index 9a38b0d83..9742f8fa0 100755 --- a/core/lib/Thelia/Form/CouponCreationForm.php +++ b/core/lib/Thelia/Form/CouponCreationForm.php @@ -29,10 +29,6 @@ use Symfony\Component\Validator\Constraints\NotBlank; use Symfony\Component\Validator\Constraints\NotEqualTo; /** - * Created by JetBrains PhpStorm. - * Date: 8/29/13 - * Time: 3:45 PM - * * Allow to build a form Coupon * * @package Coupon diff --git a/core/lib/Thelia/Model/Coupon.php b/core/lib/Thelia/Model/Coupon.php index d1d702c5f..55fa6445d 100755 --- a/core/lib/Thelia/Model/Coupon.php +++ b/core/lib/Thelia/Model/Coupon.php @@ -31,10 +31,6 @@ use Thelia\Model\Exception\InvalidArgumentException; use Thelia\Model\Map\CouponTableMap; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Used to provide an effect (mostly a discount) * at the end of the Customer checkout tunnel * It will be usable for a Customer only if it matches the Coupon criteria (Rules) diff --git a/core/lib/Thelia/Tests/Condition/ConditionCollectionTest.php b/core/lib/Thelia/Tests/Condition/ConditionCollectionTest.php index 46f639521..298204c26 100644 --- a/core/lib/Thelia/Tests/Condition/ConditionCollectionTest.php +++ b/core/lib/Thelia/Tests/Condition/ConditionCollectionTest.php @@ -26,10 +26,6 @@ use Thelia\Condition\Implementation\MatchForTotalAmount; use Thelia\Model\CurrencyQuery; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Unit Test ConditionCollection Class * Generated by PHPUnit_SkeletonGenerator 1.2.1 on 2013-11-17 at 18:59:24. * diff --git a/core/lib/Thelia/Tests/Condition/ConditionEvaluatorTest.php b/core/lib/Thelia/Tests/Condition/ConditionEvaluatorTest.php index 7b4e6d8a4..1ecd047d5 100644 --- a/core/lib/Thelia/Tests/Condition/ConditionEvaluatorTest.php +++ b/core/lib/Thelia/Tests/Condition/ConditionEvaluatorTest.php @@ -28,10 +28,6 @@ use Thelia\Condition\Operators; use Thelia\Condition\ConditionCollection; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Unit Test ConditionEvaluator Class * * @package Constraint diff --git a/core/lib/Thelia/Tests/Condition/ConditionFactoryTest.php b/core/lib/Thelia/Tests/Condition/ConditionFactoryTest.php index 37fde4cea..1894e8e29 100644 --- a/core/lib/Thelia/Tests/Condition/ConditionFactoryTest.php +++ b/core/lib/Thelia/Tests/Condition/ConditionFactoryTest.php @@ -31,10 +31,6 @@ use Thelia\Condition\ConditionCollection; use Thelia\Model\CurrencyQuery; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Unit Test ConditionFactory Class * * @package Condition diff --git a/core/lib/Thelia/Tests/Condition/Implementation/MatchForEveryoneTest.php b/core/lib/Thelia/Tests/Condition/Implementation/MatchForEveryoneTest.php index f59fe04ef..fceb41f93 100644 --- a/core/lib/Thelia/Tests/Condition/Implementation/MatchForEveryoneTest.php +++ b/core/lib/Thelia/Tests/Condition/Implementation/MatchForEveryoneTest.php @@ -29,10 +29,6 @@ use Thelia\Coupon\FacadeInterface; use Thelia\Model\Currency; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Unit Test MatchForEveryone Class * * @package Condition diff --git a/core/lib/Thelia/Tests/Condition/Implementation/MatchForTotalAmountTest.php b/core/lib/Thelia/Tests/Condition/Implementation/MatchForTotalAmountTest.php index dae570005..fa69e46b6 100644 --- a/core/lib/Thelia/Tests/Condition/Implementation/MatchForTotalAmountTest.php +++ b/core/lib/Thelia/Tests/Condition/Implementation/MatchForTotalAmountTest.php @@ -33,10 +33,6 @@ use Thelia\Model\Currency; use Thelia\Model\CurrencyQuery; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Unit Test MatchForTotalAmount Class * * @package Condition diff --git a/core/lib/Thelia/Tests/Condition/Implementation/MatchForXArticlesTest.php b/core/lib/Thelia/Tests/Condition/Implementation/MatchForXArticlesTest.php index f33ef0468..4f9f96a4b 100644 --- a/core/lib/Thelia/Tests/Condition/Implementation/MatchForXArticlesTest.php +++ b/core/lib/Thelia/Tests/Condition/Implementation/MatchForXArticlesTest.php @@ -29,10 +29,6 @@ use Thelia\Condition\SerializableCondition; use Thelia\Coupon\FacadeInterface; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Unit Test MatchForXArticles Class * * @package Constraint diff --git a/core/lib/Thelia/Tests/Condition/OperatorsTest.php b/core/lib/Thelia/Tests/Condition/OperatorsTest.php index 5d673e80b..94f5bd1bf 100644 --- a/core/lib/Thelia/Tests/Condition/OperatorsTest.php +++ b/core/lib/Thelia/Tests/Condition/OperatorsTest.php @@ -26,10 +26,6 @@ namespace Thelia\Condition; use Thelia\Core\Translation\Translator; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Unit Test Operators Class * * @package Condition diff --git a/core/lib/Thelia/Tests/Coupon/BaseFacadeTest.php b/core/lib/Thelia/Tests/Coupon/BaseFacadeTest.php index 6e1619aac..c2082edb4 100644 --- a/core/lib/Thelia/Tests/Coupon/BaseFacadeTest.php +++ b/core/lib/Thelia/Tests/Coupon/BaseFacadeTest.php @@ -24,10 +24,6 @@ namespace Thelia\Coupon; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Unit Test BaseFacade Class * Generated by PHPUnit_SkeletonGenerator 1.2.1 on 2013-11-17 at 18:59:24. * diff --git a/core/lib/Thelia/Tests/Coupon/CouponFactoryTest.php b/core/lib/Thelia/Tests/Coupon/CouponFactoryTest.php index 1314244b6..648962e01 100644 --- a/core/lib/Thelia/Tests/Coupon/CouponFactoryTest.php +++ b/core/lib/Thelia/Tests/Coupon/CouponFactoryTest.php @@ -32,10 +32,6 @@ use Thelia\Model\Coupon; use Thelia\Model\CurrencyQuery; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Unit Test CouponFactory Class * Generated by PHPUnit_SkeletonGenerator 1.2.1 on 2013-11-17 at 18:59:24. * diff --git a/core/lib/Thelia/Tests/Coupon/CouponManagerTest.php b/core/lib/Thelia/Tests/Coupon/CouponManagerTest.php index 72436f1cf..70d15e29a 100644 --- a/core/lib/Thelia/Tests/Coupon/CouponManagerTest.php +++ b/core/lib/Thelia/Tests/Coupon/CouponManagerTest.php @@ -32,10 +32,6 @@ use Thelia\Model\Coupon; use Thelia\Model\CurrencyQuery; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Unit Test CouponManager Class * Generated by PHPUnit_SkeletonGenerator 1.2.1 on 2013-11-17 at 18:59:24. * diff --git a/core/lib/Thelia/Tests/Coupon/Type/RemoveXAmountTest.php b/core/lib/Thelia/Tests/Coupon/Type/RemoveXAmountTest.php index 9b992248c..0a1d589b4 100644 --- a/core/lib/Thelia/Tests/Coupon/Type/RemoveXAmountTest.php +++ b/core/lib/Thelia/Tests/Coupon/Type/RemoveXAmountTest.php @@ -30,10 +30,6 @@ use Thelia\Coupon\FacadeInterface; use Thelia\Model\CurrencyQuery; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Unit Test RemoveXAmount Class * Generated by PHPUnit_SkeletonGenerator 1.2.1 on 2013-11-17 at 18:59:24. * diff --git a/core/lib/Thelia/Tests/Coupon/Type/RemoveXPercentTest.php b/core/lib/Thelia/Tests/Coupon/Type/RemoveXPercentTest.php index 356ab7e5f..ac893ae26 100644 --- a/core/lib/Thelia/Tests/Coupon/Type/RemoveXPercentTest.php +++ b/core/lib/Thelia/Tests/Coupon/Type/RemoveXPercentTest.php @@ -30,10 +30,6 @@ use Thelia\Coupon\FacadeInterface; use Thelia\Model\CurrencyQuery; /** - * Created by JetBrains PhpStorm. - * Date: 8/19/13 - * Time: 3:24 PM - * * Unit Test RemoveXPercent Class * Generated by PHPUnit_SkeletonGenerator 1.2.1 on 2013-11-17 at 18:59:24. *