From d4b87cca52d3820c4637ddf0b6354e377d4ffd1a Mon Sep 17 00:00:00 2001 From: Manuel Raynaud Date: Thu, 28 Mar 2013 18:06:35 +0100 Subject: [PATCH] delete unused Dumper --- .../Thelia/Config/Dumper/TpexConfigDumper.php | 77 ------------------- 1 file changed, 77 deletions(-) delete mode 100644 core/lib/Thelia/Config/Dumper/TpexConfigDumper.php diff --git a/core/lib/Thelia/Config/Dumper/TpexConfigDumper.php b/core/lib/Thelia/Config/Dumper/TpexConfigDumper.php deleted file mode 100644 index 7c532bdde..000000000 --- a/core/lib/Thelia/Config/Dumper/TpexConfigDumper.php +++ /dev/null @@ -1,77 +0,0 @@ -. */ -/* */ -/*************************************************************************************/ - -namespace Thelia\Config\Dumper; - - -class TpexConfigDumper { - - protected $loops; - protected $filters; - protected $baseParams; - protected $loopTests; - - public function __construct(array $loops, array $filters, array $baseParams, array $loopTests) - { - $this->loops = var_export($loops, true); - $this->filters = var_export($filters, true); - $this->baseParams = var_export($baseParams, true); - $this->loopTests = var_export($loopTests, true); - } - - public function dump() - { - - $code = <<loops}; - } - - public function getFilterConfig() - { - return {$this->filters}; - } - - public function getBaseParamConfig() - { - return {$this->baseParams}; - } - - public function getLoopTestConfig() - { - return {$this->loopTests}; - } -} -EOF; - - return $code; - } - - -} \ No newline at end of file