Commit 924a97eb authored by Alexander's avatar Alexander

Merge pull request #182 from stof/missing_method

Added a missing method in the Constraint interface
parents f9af44c1 fa0caab7
......@@ -21,10 +21,12 @@
namespace Doctrine\DBAL\Schema;
use Doctrine\DBAL\Platforms\AbstractPlatform;
/**
* Marker interface for contraints
*
*
*
* @link www.doctrine-project.org
* @since 2.0
* @version $Revision$
......@@ -34,5 +36,7 @@ interface Constraint
{
public function getName();
public function getQuotedName(AbstractPlatform $platform);
public function getColumns();
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment