<?php
namespace App\Entity;
class Icon {
/**
* @var integer
*/
private $id;
/**
* @var string
*/
private $iconValue;
/**
* @var \App\Entity\IconCategory
*/
private $iconCategory;
/**
* Get id
*
* @return integer
*/
public function getId() {
return $this->id;
}
/**
* Set iconValue
*
* @param string $iconValue
*
* @return Icon
*/
public function setIconValue($iconValue) {
$this->iconValue = $iconValue;
return $this;
}
/**
* Get iconValue
*
* @return string
*/
public function getIconValue() {
return $this->iconValue;
}
/**
* Set iconCategory.
*
* @param \App\Entity\IconCategory|null $iconCategory
*
* @return IconCategory
*/
public function setIconCategory(\App\Entity\IconCategory $iconCategory = null) {
$this->iconCategory = $iconCategory;
return $this;
}
/**
* Get iconCategory.
*
* @return \App\Entity\IconCategory|null
*/
public function getIconCategory() {
return $this->iconCategory;
}
}