Added MappedSuperclass for spooled SMS

This will be used later
This commit is contained in:
Gergely Polonkai (W00d5t0ck) 2012-10-08 15:18:37 +02:00
parent 66ee58de00
commit aa7d258776
1 changed files with 50 additions and 0 deletions

50
Model/SpooledSms.php Normal file
View File

@ -0,0 +1,50 @@
<?php
namespace BrokernetGroup\Common\SMSSenderBundle\Model;
use Doctrine\ORM\Mapping as ORM;
/**
* Entity to spool SMS messages
*
* @ORM\MappedSuperclass
*/
class SpooledSms
{
/**
* The recipient's mobile phone number
*
* @var string $recipient
*
* @ORM\Column(type="string", length=30, nullable=false)
*/
protected $recipient;
/**
* The message itself
*
* @var string $message
*
* @ORM\Column(type="text", nullable=false)
*/
protected $message;
/**
* Password locations. This must be an array of arrays containing the
* password's location and length
*
* @var array $passwordLocations
*
* @ORM\Column(type="array", name="password_locations", nullable=true)
*/
protected $passwordLocations;
/**
* True if the message is already sent
*
* @var boolean $sent
*
* @ORM\Column(type="boolean", nullable=false)
*/
protected $sent;
}