コード例 #1
0
ファイル: Campaign.php プロジェクト: peteraba/dm-mailer
 /**
  * Convert the object to an array.
  *
  * @return array
  */
 public function getArrayCopy()
 {
     $arrayCopy = get_object_vars($this);
     $arrayCopy[static::TEMPLATE] = $this->template ? $this->template->getId() : null;
     return $arrayCopy;
 }