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 SeriesSummary
* @package ikoene\Marvel\Entity
*/
class SeriesSummary
{
* The path to the individual series resource.
*
* @var string
private $resourceURI;
* The canonical name of the series.
private $name;
* @return string
public function getResourceURI()
return $this->resourceURI;
}
* @param string $resourceURI
public function setResourceURI(string $resourceURI)
$this->resourceURI = $resourceURI;
public function getName()
return $this->name;
* @param string $name
public function setName(string $name)
$this->name = $name;