. */ /** * Doctrine_Identifier * * @author Konsta Vesterinen * @package Doctrine ORM * @url www.phpdoctrine.com * @license LGPL */ class Doctrine_Identifier { /** * constant for auto_increment identifier */ const AUTO_INCREMENT = 1; /** * constant for sequence identifier */ const SEQUENCE = 2; /** * constant for normal identifier */ const NORMAL = 3; /** * constant for composite identifier */ const COMPOSITE = 4; }