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