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 Image
* @package Ikoene\MarvelApiBundle\Entity
*/
class Image
{
* The directory path of to the image.
*
* @var string
private $path;
* The file extension for the image.
private $extension;
* @return string
public function getPath()
return $this->path;
}
* @param string $path
public function setPath(string $path)
$this->path = $path;
public function getExtension()
return $this->extension;
* @param string $extension
public function setExtension(string $extension)
$this->extension = $extension;