Skip to content
This repository has been archived by the owner on Apr 11, 2018. It is now read-only.

Commit

Permalink
Merge branch 'master' into PostgresMerge
Browse files Browse the repository at this point in the history
  • Loading branch information
brettminnie committed May 27, 2014
2 parents 11a84dc + cec8ec5 commit 99adf91
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Opg/Common/Model/Entity/Traits/HasSystemStatus.php
Expand Up @@ -12,6 +12,7 @@ trait HasSystemStatus
/**
* @ORM\Column(type = "boolean",options={"default":1})
* @var bool
* @Type("boolean")
*/
protected $systemStatus = true;

Expand Down
2 changes: 2 additions & 0 deletions src/Opg/Common/Model/Entity/Traits/UniqueIdentifier.php
@@ -1,6 +1,7 @@
<?php
namespace Opg\Common\Model\Entity\Traits;
use Doctrine\ORM\Mapping as ORM;
use JMS\Serializer\Annotation\Type;

/**
* Class UniqueIdentifier
Expand All @@ -14,6 +15,7 @@ trait UniqueIdentifier
*
* @ORM\Column(type = "bigint", options = {"unsigned": true}, unique = true)
* @var int
* @Type("integer")
* @Groups({"api-poa-list","api-task-list"})
*/
protected $uId;
Expand Down
Expand Up @@ -7,6 +7,7 @@
use Opg\Core\Model\Entity\Person\Person as BasePerson;
use Doctrine\ORM\Mapping as ORM;
use Zend\InputFilter\Factory as InputFactory;
use JMS\Serializer\Annotation\Type;

/**
* Class AttorneyAbstract
Expand All @@ -20,12 +21,14 @@ abstract class AttorneyAbstract extends BasePerson implements HasSystemStatusInt
/**
* @ORM\Column(type="string", nullable=true)
* @var string
* @Type("string")
*/
protected $dxNumber;

/**
* @ORM\Column(type="string", nullable=true)
* @var string
* @Type("string")
*/
protected $dxExchange;

Expand Down
Expand Up @@ -10,6 +10,7 @@
use Doctrine\ORM\Mapping as ORM;
use Zend\InputFilter\Factory as InputFactory;
use Zend\Validator\Callback;
use JMS\Serializer\Annotation\Type;

/**
* @ORM\Entity
Expand Down
3 changes: 3 additions & 0 deletions src/Opg/Core/Model/Entity/CaseItem/Lpa/Traits/Company.php
Expand Up @@ -2,6 +2,7 @@
namespace Opg\Core\Model\Entity\CaseItem\Lpa\Traits;

use Doctrine\ORM\Mapping as ORM;
use JMS\Serializer\Annotation\Type;

/**
* Class Company
Expand All @@ -12,12 +13,14 @@ trait Company
/**
* @ORM\Column(type = "string", nullable = true)
* @var string
* @Type("string")
*/
protected $companyName;

/**
* @ORM\Column(type = "string", nullable = true)
* @var string
* @Type("string")
*/
protected $companyNumber;

Expand Down

0 comments on commit 99adf91

Please sign in to comment.