From fe599d20c693e7535267fbc4a427ee566b8c176a Mon Sep 17 00:00:00 2001 From: romanb Date: Sun, 17 May 2009 20:43:49 +0000 Subject: [PATCH] [2.0] Intermediate commit. --- .../Persisters/StandardEntityPersister.php | 58 ------------------- 1 file changed, 58 deletions(-) delete mode 100644 lib/Doctrine/ORM/Persisters/StandardEntityPersister.php diff --git a/lib/Doctrine/ORM/Persisters/StandardEntityPersister.php b/lib/Doctrine/ORM/Persisters/StandardEntityPersister.php deleted file mode 100644 index 2f19379bc..000000000 --- a/lib/Doctrine/ORM/Persisters/StandardEntityPersister.php +++ /dev/null @@ -1,58 +0,0 @@ -. - */ - -namespace Doctrine\ORM\Persisters; - -/** - * The default persister strategy maps a single entity instance to a single database table, - * as is the case in Single Table Inheritance & Concrete Table Inheritance. - * - * @author Roman Borschel - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL - * @version $Revision$ - * @link www.doctrine-project.org - * @since 2.0 - */ -class StandardEntityPersister extends AbstractEntityPersister -{ - /** - * Deletes an entity. - */ - /*protected function _doDelete($record) - { - }*/ - - /** - * Inserts a single entity into the database. - * - * @param Doctrine\ORM\Entity $entity The entity to insert. - */ - /*protected function _doInsert(Doctrine_ORM_Entity $record) - { - }*/ - - /** - * Updates an entity. - */ - /*protected function _doUpdate(Doctrine_ORM_Entity $record) - { - }*/ -} \ No newline at end of file