delete propel auto generated files

This commit is contained in:
Manuel Raynaud
2012-12-20 17:59:30 +01:00
parent 856785dc19
commit 6ba59276e1
497 changed files with 173 additions and 251537 deletions

View File

@@ -58,6 +58,8 @@ class Parser implements ParserInterface
$this->content = $request->get("test");
var_dump($this->container->get("database"));
return $this->content;
}

View File

@@ -13,7 +13,9 @@ namespace Thelia\Core;
use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Config\Loader\LoaderInterface;
use Thelia\Core\TheliaBundle;
use Thelia\Core\Bundle\TheliaBundle;
use Thelia\Core\Bundle\NotORMBundle;
use Thelia\Core\Bundle\ModelBundle;
class Thelia extends Kernel
{
@@ -28,7 +30,7 @@ class Thelia extends Kernel
protected function initializeContainer()
{
$this->container = $this->buildContainer();
$this->container->set('kernel', $this);
//$this->container->set('kernel', $this);
}
@@ -75,6 +77,7 @@ class Thelia extends Kernel
protected function buildContainer()
{
$container = $this->getContainerBuilder();
$container->set('kernel', $this);
foreach ($this->bundles as $bundle) {
$bundle->build($container);
@@ -95,7 +98,9 @@ class Thelia extends Kernel
{
$bundles = array(
/* TheliaBundle contain all the dependency injection description */
new TheliaBundle()
new TheliaBundle(),
new NotORMBundle(),
new ModelBundle()
);
/**

View File

@@ -1,95 +0,0 @@
<?php
namespace Thelia\Core;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Reference;
use Symfony\Component\DependencyInjection\Scope;
/**
* First Bundle use in Thelia
* It initialize dependency injection container.
*
* @TODO load configuration from thelia plugin
* @TODO register database configuration.
*
*
* @author Manuel Raynaud <mraynaud@openstudio.fr>
*/
class TheliaBundle extends Bundle
{
/**
*
* Construct the depency injection builder
*
* @param \Symfony\Component\DependencyInjection\ContainerBuilder $container
*/
public function build(ContainerBuilder $container)
{
$container->addScope( new Scope('request'));
$container->register('request', 'Symfony\Component\HttpFoundation\Request')
->setSynthetic(true);
$container->register('controller.default','Thelia\Controller\DefaultController');
$container->register('matcher.default','Thelia\Routing\Matcher\DefaultMatcher')
->addArgument(new Reference('controller.default'));
$container->register('matcher','Thelia\Routing\Matcher\theliaMatcherCollection')
->addMethodCall('add', array(new Reference('matcher.default'), -255))
//->addMethodCall('add','a matcher class (instance or class name)
;
$container->register('resolver', 'Symfony\Component\HttpKernel\Controller\ControllerResolver');
$container->register('parser','Thelia\Core\Template\Parser')
->addArgument(new Reference('service_container'))
;
/**
* RouterListener implements EventSubscriberInterface and listen for kernel.request event
*/
$container->register('listener.router', 'Symfony\Component\HttpKernel\EventListener\RouterListener')
->setArguments(array(new Reference('matcher')))
;
/**
* @TODO add an other listener on kernel.request for checking some params Like check if User is log in, set the language and other.
*
* $container->register()
*
*
* $container->register('listener.request', 'Thelia\Core\EventListener\RequestListener')
* ->addArgument(new Reference('');
* ;
*/
$container->register('thelia.listener.view','Thelia\Core\EventListener\ViewListener')
->addArgument(new Reference('parser'))
;
$container->register('dispatcher','Symfony\Component\EventDispatcher\EventDispatcher')
->addArgument(new Reference('service_container'))
->addMethodCall('addSubscriber', array(new Reference('listener.router')))
->addMethodCall('addSubscriber', array(new Reference('thelia.listener.view')))
;
$container->register('http_kernel','Thelia\Core\TheliaHttpKernel')
->addArgument(new Reference('dispatcher'))
->addArgument(new Reference('service_container'))
->addArgument(new Reference('resolver'))
;
// DEFINE DEFAULT PARAMETER LIKE
/**
* @TODO learn about container compilation
*/
}
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseAccessory;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'accessory' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class Accessory extends BaseAccessory
class Accessory extends Base
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAccessoryPeer;
/**
* Skeleton subclass for performing query and update operations on the 'accessory' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AccessoryPeer extends BaseAccessoryPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAccessoryQuery;
/**
* Skeleton subclass for performing query and update operations on the 'accessory' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AccessoryQuery extends BaseAccessoryQuery
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseAddress;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'address' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class Address extends BaseAddress
class Address extends Base
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAddressPeer;
/**
* Skeleton subclass for performing query and update operations on the 'address' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AddressPeer extends BaseAddressPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAddressQuery;
/**
* Skeleton subclass for performing query and update operations on the 'address' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AddressQuery extends BaseAddressQuery
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseAdmin;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'admin' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class Admin extends BaseAdmin
class Admin extends Base
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseAdminGroup;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'admin_group' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AdminGroup extends BaseAdminGroup
class AdminGroup extends Base
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAdminGroupPeer;
/**
* Skeleton subclass for performing query and update operations on the 'admin_group' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AdminGroupPeer extends BaseAdminGroupPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAdminGroupQuery;
/**
* Skeleton subclass for performing query and update operations on the 'admin_group' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AdminGroupQuery extends BaseAdminGroupQuery
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseAdminLog;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'admin_log' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AdminLog extends BaseAdminLog
class AdminLog extends Base
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAdminLogPeer;
/**
* Skeleton subclass for performing query and update operations on the 'admin_log' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AdminLogPeer extends BaseAdminLogPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAdminLogQuery;
/**
* Skeleton subclass for performing query and update operations on the 'admin_log' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AdminLogQuery extends BaseAdminLogQuery
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAdminPeer;
/**
* Skeleton subclass for performing query and update operations on the 'admin' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AdminPeer extends BaseAdminPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAdminQuery;
/**
* Skeleton subclass for performing query and update operations on the 'admin' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AdminQuery extends BaseAdminQuery
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseArea;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'area' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class Area extends BaseArea
class Area extends Base
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAreaPeer;
/**
* Skeleton subclass for performing query and update operations on the 'area' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AreaPeer extends BaseAreaPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAreaQuery;
/**
* Skeleton subclass for performing query and update operations on the 'area' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AreaQuery extends BaseAreaQuery
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseAttribute;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'attribute' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class Attribute extends BaseAttribute
class Attribute extends Base
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseAttributeAv;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'attribute_av' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AttributeAv extends BaseAttributeAv
class AttributeAv extends Base
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseAttributeAvDesc;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'attribute_av_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AttributeAvDesc extends BaseAttributeAvDesc
class AttributeAvDesc extends Base
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAttributeAvDescPeer;
/**
* Skeleton subclass for performing query and update operations on the 'attribute_av_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AttributeAvDescPeer extends BaseAttributeAvDescPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAttributeAvDescQuery;
/**
* Skeleton subclass for performing query and update operations on the 'attribute_av_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AttributeAvDescQuery extends BaseAttributeAvDescQuery
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAttributeAvPeer;
/**
* Skeleton subclass for performing query and update operations on the 'attribute_av' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AttributeAvPeer extends BaseAttributeAvPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAttributeAvQuery;
/**
* Skeleton subclass for performing query and update operations on the 'attribute_av' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AttributeAvQuery extends BaseAttributeAvQuery
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseAttributeCategory;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'attribute_category' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AttributeCategory extends BaseAttributeCategory
class AttributeCategory extends Base
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAttributeCategoryPeer;
/**
* Skeleton subclass for performing query and update operations on the 'attribute_category' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AttributeCategoryPeer extends BaseAttributeCategoryPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAttributeCategoryQuery;
/**
* Skeleton subclass for performing query and update operations on the 'attribute_category' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AttributeCategoryQuery extends BaseAttributeCategoryQuery
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseAttributeCombination;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'attribute_combination' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AttributeCombination extends BaseAttributeCombination
class AttributeCombination extends Base
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAttributeCombinationPeer;
/**
* Skeleton subclass for performing query and update operations on the 'attribute_combination' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AttributeCombinationPeer extends BaseAttributeCombinationPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAttributeCombinationQuery;
/**
* Skeleton subclass for performing query and update operations on the 'attribute_combination' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AttributeCombinationQuery extends BaseAttributeCombinationQuery
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseAttributeDesc;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'attribute_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AttributeDesc extends BaseAttributeDesc
class AttributeDesc extends Base
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAttributeDescPeer;
/**
* Skeleton subclass for performing query and update operations on the 'attribute_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AttributeDescPeer extends BaseAttributeDescPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAttributeDescQuery;
/**
* Skeleton subclass for performing query and update operations on the 'attribute_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AttributeDescQuery extends BaseAttributeDescQuery
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAttributePeer;
/**
* Skeleton subclass for performing query and update operations on the 'attribute' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AttributePeer extends BaseAttributePeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseAttributeQuery;
/**
* Skeleton subclass for performing query and update operations on the 'attribute' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class AttributeQuery extends BaseAttributeQuery
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseCategory;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'category' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class Category extends BaseCategory
class Category extends Base
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseCategoryDesc;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'category_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CategoryDesc extends BaseCategoryDesc
class CategoryDesc extends Base
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCategoryDescPeer;
/**
* Skeleton subclass for performing query and update operations on the 'category_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CategoryDescPeer extends BaseCategoryDescPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCategoryDescQuery;
/**
* Skeleton subclass for performing query and update operations on the 'category_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CategoryDescQuery extends BaseCategoryDescQuery
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCategoryPeer;
/**
* Skeleton subclass for performing query and update operations on the 'category' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CategoryPeer extends BaseCategoryPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCategoryQuery;
/**
* Skeleton subclass for performing query and update operations on the 'category' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CategoryQuery extends BaseCategoryQuery
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseCombination;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'combination' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class Combination extends BaseCombination
class Combination extends Base
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCombinationPeer;
/**
* Skeleton subclass for performing query and update operations on the 'combination' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CombinationPeer extends BaseCombinationPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCombinationQuery;
/**
* Skeleton subclass for performing query and update operations on the 'combination' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CombinationQuery extends BaseCombinationQuery
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseConfig;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'config' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class Config extends BaseConfig
class Config extends Base
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseConfigDesc;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'config_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class ConfigDesc extends BaseConfigDesc
class ConfigDesc extends Base
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseConfigDescPeer;
/**
* Skeleton subclass for performing query and update operations on the 'config_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class ConfigDescPeer extends BaseConfigDescPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseConfigDescQuery;
/**
* Skeleton subclass for performing query and update operations on the 'config_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class ConfigDescQuery extends BaseConfigDescQuery
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseConfigPeer;
/**
* Skeleton subclass for performing query and update operations on the 'config' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class ConfigPeer extends BaseConfigPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseConfigQuery;
/**
* Skeleton subclass for performing query and update operations on the 'config' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class ConfigQuery extends BaseConfigQuery
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseContent;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'content' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class Content extends BaseContent
class Content extends Base
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseContentAssoc;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'content_assoc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class ContentAssoc extends BaseContentAssoc
class ContentAssoc extends Base
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseContentAssocPeer;
/**
* Skeleton subclass for performing query and update operations on the 'content_assoc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class ContentAssocPeer extends BaseContentAssocPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseContentAssocQuery;
/**
* Skeleton subclass for performing query and update operations on the 'content_assoc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class ContentAssocQuery extends BaseContentAssocQuery
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseContentDesc;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'content_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class ContentDesc extends BaseContentDesc
class ContentDesc extends Base
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseContentDescPeer;
/**
* Skeleton subclass for performing query and update operations on the 'content_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class ContentDescPeer extends BaseContentDescPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseContentDescQuery;
/**
* Skeleton subclass for performing query and update operations on the 'content_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class ContentDescQuery extends BaseContentDescQuery
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseContentFolder;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'content_folder' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class ContentFolder extends BaseContentFolder
class ContentFolder extends Base
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseContentFolderPeer;
/**
* Skeleton subclass for performing query and update operations on the 'content_folder' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class ContentFolderPeer extends BaseContentFolderPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseContentFolderQuery;
/**
* Skeleton subclass for performing query and update operations on the 'content_folder' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class ContentFolderQuery extends BaseContentFolderQuery
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseContentPeer;
/**
* Skeleton subclass for performing query and update operations on the 'content' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class ContentPeer extends BaseContentPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseContentQuery;
/**
* Skeleton subclass for performing query and update operations on the 'content' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class ContentQuery extends BaseContentQuery
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseCountry;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'country' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class Country extends BaseCountry
class Country extends Base
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseCountryDesc;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'country_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CountryDesc extends BaseCountryDesc
class CountryDesc extends Base
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCountryDescPeer;
/**
* Skeleton subclass for performing query and update operations on the 'country_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CountryDescPeer extends BaseCountryDescPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCountryDescQuery;
/**
* Skeleton subclass for performing query and update operations on the 'country_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CountryDescQuery extends BaseCountryDescQuery
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCountryPeer;
/**
* Skeleton subclass for performing query and update operations on the 'country' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CountryPeer extends BaseCountryPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCountryQuery;
/**
* Skeleton subclass for performing query and update operations on the 'country' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CountryQuery extends BaseCountryQuery
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseCoupon;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'coupon' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class Coupon extends BaseCoupon
class Coupon extends Base
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseCouponOrder;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'coupon_order' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CouponOrder extends BaseCouponOrder
class CouponOrder extends Base
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCouponOrderPeer;
/**
* Skeleton subclass for performing query and update operations on the 'coupon_order' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CouponOrderPeer extends BaseCouponOrderPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCouponOrderQuery;
/**
* Skeleton subclass for performing query and update operations on the 'coupon_order' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CouponOrderQuery extends BaseCouponOrderQuery
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCouponPeer;
/**
* Skeleton subclass for performing query and update operations on the 'coupon' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CouponPeer extends BaseCouponPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCouponQuery;
/**
* Skeleton subclass for performing query and update operations on the 'coupon' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CouponQuery extends BaseCouponQuery
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseCouponRule;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'coupon_rule' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CouponRule extends BaseCouponRule
class CouponRule extends Base
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCouponRulePeer;
/**
* Skeleton subclass for performing query and update operations on the 'coupon_rule' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CouponRulePeer extends BaseCouponRulePeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCouponRuleQuery;
/**
* Skeleton subclass for performing query and update operations on the 'coupon_rule' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CouponRuleQuery extends BaseCouponRuleQuery
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseCurrency;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'currency' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class Currency extends BaseCurrency
class Currency extends Base
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCurrencyPeer;
/**
* Skeleton subclass for performing query and update operations on the 'currency' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CurrencyPeer extends BaseCurrencyPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCurrencyQuery;
/**
* Skeleton subclass for performing query and update operations on the 'currency' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CurrencyQuery extends BaseCurrencyQuery
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseCustomer;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'customer' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class Customer extends BaseCustomer
class Customer extends Base
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCustomerPeer;
/**
* Skeleton subclass for performing query and update operations on the 'customer' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CustomerPeer extends BaseCustomerPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCustomerQuery;
/**
* Skeleton subclass for performing query and update operations on the 'customer' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CustomerQuery extends BaseCustomerQuery
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseCustomerTitle;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'customer_title' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CustomerTitle extends BaseCustomerTitle
class CustomerTitle extends Base
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseCustomerTitleDesc;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'customer_title_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CustomerTitleDesc extends BaseCustomerTitleDesc
class CustomerTitleDesc extends Base
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCustomerTitleDescPeer;
/**
* Skeleton subclass for performing query and update operations on the 'customer_title_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CustomerTitleDescPeer extends BaseCustomerTitleDescPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCustomerTitleDescQuery;
/**
* Skeleton subclass for performing query and update operations on the 'customer_title_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CustomerTitleDescQuery extends BaseCustomerTitleDescQuery
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCustomerTitlePeer;
/**
* Skeleton subclass for performing query and update operations on the 'customer_title' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CustomerTitlePeer extends BaseCustomerTitlePeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseCustomerTitleQuery;
/**
* Skeleton subclass for performing query and update operations on the 'customer_title' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class CustomerTitleQuery extends BaseCustomerTitleQuery
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseDelivzone;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'delivzone' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class Delivzone extends BaseDelivzone
class Delivzone extends Base
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseDelivzonePeer;
/**
* Skeleton subclass for performing query and update operations on the 'delivzone' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class DelivzonePeer extends BaseDelivzonePeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseDelivzoneQuery;
/**
* Skeleton subclass for performing query and update operations on the 'delivzone' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class DelivzoneQuery extends BaseDelivzoneQuery
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseDocument;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'document' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class Document extends BaseDocument
class Document extends Base
{
}

View File

@@ -2,20 +2,8 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseDocumentDesc;
use Thelia\Model\Base;
/**
* Skeleton subclass for representing a row from the 'document_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class DocumentDesc extends BaseDocumentDesc
class DocumentDesc extends Base
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseDocumentDescPeer;
/**
* Skeleton subclass for performing query and update operations on the 'document_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class DocumentDescPeer extends BaseDocumentDescPeer
{
}

View File

@@ -1,21 +0,0 @@
<?php
namespace Thelia\Model;
use Thelia\Model\om\BaseDocumentDescQuery;
/**
* Skeleton subclass for performing query and update operations on the 'document_desc' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.Thelia.Model
*/
class DocumentDescQuery extends BaseDocumentDescQuery
{
}

Some files were not shown because too many files have changed in this diff Show More