for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types = 1);
namespace Ikoene\MarvelApiBundle\Entity;
/**
* Class Url
* @package Ikoene\MarvelApiBundle\Entity
*/
class Url
{
* A text identifier for the URL.
*
* @var string
private $type;
* A full URL (including scheme, domain, and path).
private $url;
* @return string
public function getType()
return $this->type;
}
* @param string $type
public function setType(string $type)
$this->type = $type;
public function getUrl()
return $this->url;
* @param string $url
public function setUrl(string $url)
$this->url = $url;