for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types = 1);
namespace ikoene\Marvel\Entity;
/**
* Class ComicDate
* @package ikoene\Marvel\Entity
*/
class ComicDate
{
* A description of the date (e.g. onsale date, FOC date).
*
* @var string
private $type;
* The date.
private $date;
* @return string
public function getType()
return $this->type;
}
* @param string $type
public function setType(string $type)
$this->type = $type;
public function getDate()
return $this->date;
* @param string $date
public function setDate(string $date)
$this->date = $date;