Skip to content

Commit

Permalink
[6-8-after] getter/setterの自動生成
Browse files Browse the repository at this point in the history
  • Loading branch information
hidenorigoto committed Dec 28, 2015
1 parent f540ed5 commit 9acc669
Showing 1 changed file with 48 additions and 1 deletion.
49 changes: 48 additions & 1 deletion src/AppBundle/Entity/Inquiry.php
Expand Up @@ -217,5 +217,52 @@ public function getContent()
{
return $this->content;
}
}

/**
* Set processStatus
*
* @param string $processStatus
*
* @return Inquiry
*/
public function setProcessStatus($processStatus)
{
$this->processStatus = $processStatus;

return $this;
}

/**
* Get processStatus
*
* @return string
*/
public function getProcessStatus()
{
return $this->processStatus;
}

/**
* Set processMemo
*
* @param string $processMemo
*
* @return Inquiry
*/
public function setProcessMemo($processMemo)
{
$this->processMemo = $processMemo;

return $this;
}

/**
* Get processMemo
*
* @return string
*/
public function getProcessMemo()
{
return $this->processMemo;
}
}

0 comments on commit 9acc669

Please sign in to comment.