for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MauroMoreno\DataFactory\Entity;
/**
* Class Category
*
* @package MauroMoreno\DataFactory\Entity
*/
class Category
{
* @var int
private $id;
* @var string
private $channel;
private $value;
* @return int
public function getId(): int
return $this->id;
}
* @param int $id
* @return Category
public function setId(int $id): Category
$this->id = $id;
return $this;
* @return string
public function getChannel(): string
return $this->channel;
* @param string $channel
public function setChannel(string $channel): Category
$this->channel = $channel;
public function getValue(): string
return $this->value;
* @param string $value
public function setValue(string $value): Category
$this->value = $value;