for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Markus Tacker <[email protected]>
* @copyright 2013-2016 Verein zur Förderung der Netzkultur im Rhein-Main-Gebiet e.V. | http://netzkultur-rheinmain.de/
*/
namespace BCRM\BackendBundle\Content;
use BCRM\BackendBundle\Content\Content;
class Info extends Content
{
* @var string
private $etag;
* @var \DateTime
private $lastModified;
* @return string
public function getEtag()
return $this->etag;
}
* @param string $etag
public function setEtag($etag)
$this->etag = $etag;
* @return \DateTime
public function getLastModified()
return $this->lastModified;
* @param \DateTime $lastModified
public function setLastModified(\DateTime $lastModified)
$this->lastModified = $lastModified;