for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sludio\HelperBundle\Sitemap\Entity;
class Image
{
/**
* @var string|null
*/
protected $loc;
protected $caption;
protected $geoLocation;
protected $title;
protected $license;
* @return null|string
public function getLoc()
return $this->loc;
}
* @param null|string $loc
*
* @return $this
public function setLoc($loc)
$this->loc = $loc;
return $this;
public function getCaption()
return $this->caption;
* @param null|string $caption
public function setCaption($caption)
$this->caption = $caption;
public function getGeoLocation()
return $this->geoLocation;
* @param null|string $geoLocation
public function setGeoLocation($geoLocation)
$this->geoLocation = $geoLocation;
public function getTitle()
return $this->title;
* @param null|string $title
public function setTitle($title)
$this->title = $title;
public function getLicense()
return $this->license;
* @param null|string $license
public function setLicense($license)
$this->license = $license;