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