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

Commit

Permalink
APOLLO-2960 - added type annotations back for editing a case
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyquinton committed May 27, 2014
1 parent 63922b8 commit 0b4296b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Opg/Common/Model/Entity/Traits/HasSystemStatus.php
Expand Up @@ -3,6 +3,7 @@

use Doctrine\ORM\Mapping as ORM;


/**
* Class HasSystemStatus
* @package Opg\Common\Model\Entity\Traits
Expand All @@ -12,6 +13,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

0 comments on commit 0b4296b

Please sign in to comment.