From dcd87ef10b2bc56657b235108993bf4ef1a73e18 Mon Sep 17 00:00:00 2001 From: Steve Hurwitz Date: Wed, 5 Dec 2012 11:38:35 -0500 Subject: [PATCH] Length is an integer, not a string. --- Entity/AnswerGroup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Entity/AnswerGroup.php b/Entity/AnswerGroup.php index d9a9b09..c23f056 100644 --- a/Entity/AnswerGroup.php +++ b/Entity/AnswerGroup.php @@ -24,7 +24,7 @@ abstract class AnswerGroup extends AnswerGroupModel { /** - * @ORM\Column(name="client_ip", type="string", length="39") + * @ORM\Column(name="client_ip", type="string", length=39) */ protected $clientIp;