From fc4a0734dbaadb5231537e706ec2b6cc80653c14 Mon Sep 17 00:00:00 2001 From: Etienne Roudeix Date: Thu, 27 Jun 2013 16:08:36 +0200 Subject: [PATCH] no more test loops --- .../Thelia/Core/Template/TestLoop/Equal.php | 51 ------------------- 1 file changed, 51 deletions(-) delete mode 100755 core/lib/Thelia/Core/Template/TestLoop/Equal.php diff --git a/core/lib/Thelia/Core/Template/TestLoop/Equal.php b/core/lib/Thelia/Core/Template/TestLoop/Equal.php deleted file mode 100755 index 5e812a7a4..000000000 --- a/core/lib/Thelia/Core/Template/TestLoop/Equal.php +++ /dev/null @@ -1,51 +0,0 @@ -. */ -/* */ -/*************************************************************************************/ - -namespace Thelia\Core\Template\TestLoop; - -use Thelia\Tpex\Element\TestLoop\BaseTestLoop; - -/** - * - * TestLoop equal, test if value and variable are equal - * - * example : - * - * - * Result display here if variable and value are equal - * - * Result display here if variable and value are not equal - * - * - * Class Equal - * @package Thelia\Core\Template\TestLoop - * @author Manuel Raynaud - */ -class Equal extends BaseTestLoop -{ - - public function exec($variable, $value) - { - return $variable == $value; - } -} \ No newline at end of file