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 EventSummary
* @package ikoene\Marvel\Entity
*/
class EventSummary
{
* The path to the individual event resource.
*
* @var string
private $resourceURI;
* The name of the event.
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;