. */ namespace Doctrine\DBAL\Schema; /** * Marker interface for contraints * * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link www.doctrine-project.org * @since 2.0 * @version $Revision$ * @author Benjamin Eberlei */ interface Constraint { public function getName(); public function getColumns(); }