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