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

Commit

Permalink
APOLLO-3219 Made caseItem fluid
Browse files Browse the repository at this point in the history
  • Loading branch information
brettminnie committed Jun 17, 2014
1 parent 7b3b732 commit 11a685a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/Opg/Core/Model/Entity/CaseItem/CaseItem.php
Expand Up @@ -282,10 +282,13 @@ public function getCaseType()

/**
* @param string $caseType
* @return CaseItem
*/
public function setCaseType($caseType)
{
$this->caseType = strtoupper($caseType);

return $this;
}

/**
Expand All @@ -298,10 +301,13 @@ public function getCaseSubtype()

/**
* @param string $caseSubtype
* @return CaseItem
*/
public function setCaseSubtype($caseSubtype)
{
$this->caseSubtype = $caseSubtype;

return $this;
}

/**
Expand All @@ -322,10 +328,13 @@ public function getAssignedUser()

/**
* @param string $status
* @return CaseItem
*/
public function setStatus($status)
{
$this->status = $status;

return $this;
}

/**
Expand Down

0 comments on commit 11a685a

Please sign in to comment.