for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Category
*
* @category AxalianAchievements\Entity
* @package AxalianAchievements\Entity
* @author Michel Maas <[email protected]>
*/
namespace AxalianAchievements\Entity;
class Category extends AbstractAchievementEntity
{
* @var string
protected $title;
protected $description;
protected $image;
* @return string
public function getTitle()
return $this->title;
}
* @param string $title
* @return self
public function setTitle($title)
$this->title = $title;
return $this;
public function getDescription()
return $this->description;
* @param string $description
public function setDescription($description)
$this->description = $description;
public function getImage()
return $this->image;
* @param string $image
public function setImage($image)
$this->image = $image;