Commit fa0caab7 authored by Christophe Coevoet's avatar Christophe Coevoet

Added a missing method in the Constraint interface

parent 43191656
...@@ -21,10 +21,12 @@ ...@@ -21,10 +21,12 @@
namespace Doctrine\DBAL\Schema; namespace Doctrine\DBAL\Schema;
use Doctrine\DBAL\Platforms\AbstractPlatform;
/** /**
* Marker interface for contraints * Marker interface for contraints
* *
* *
* @link www.doctrine-project.org * @link www.doctrine-project.org
* @since 2.0 * @since 2.0
* @version $Revision$ * @version $Revision$
...@@ -34,5 +36,7 @@ interface Constraint ...@@ -34,5 +36,7 @@ interface Constraint
{ {
public function getName(); public function getName();
public function getQuotedName(AbstractPlatform $platform);
public function getColumns(); 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