for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AppBundle\Entity;
class Psr
{
/**
* @var string
*/
private $title;
private $readTime;
* @var \DateTime
private $updated;
private $description;
private $content;
private $slug;
* @var Psr
private $meta;
private $examples;
* Set title
*
* @param string $title
* @return Psr
public function setTitle($title)
$this->title = $title;
return $this;
}
* Get title
* @return string
public function getTitle()
return $this->title;
* Set description
* @param string $description
public function setDescription($description)
$this->description = $description;
* Get description
public function getDescription()
return $this->description;
* Set read time
* @param string $readTime
public function setReadTime($readTime)
$this->readTime = $readTime;
* Get read time
public function getReadTime()
return $this->readTime;
* Set updated time
* @param \DateTime $updated
public function setUpdated($updated)
$this->updated = $updated;
* Get updated time
* @return \DateTime
public function getUpdated()
return $this->updated;
* Set content
* @param string $content
public function setContent($content)
$this->content = $content;
* Get content
public function getContent()
return $this->content;
* Set slug
* @param string $slug
public function setSlug($slug)
$this->slug = $slug;
* Get slug
public function getSlug()
return $this->slug;
* Set meta document
* @param Psr $meta
public function setMeta($meta)
$this->meta = $meta;
* Get meta document
public function getMeta()
return $this->meta;
* Set examples document
* @param Psr $examples
public function setExamples($examples)
$this->examples = $examples;
* Get examples document
public function getExamples()
return $this->examples;