for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace SlayerBirden\DataFlowServer\Pipeline\Entities;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
* @ORM\Table(name="pipe_types")
**/
class Type
{
* @ORM\Id()
* @ORM\Column(type="string")
* @var string
*/
private $code;
private $table;
* @return string
public function getCode(): string
return $this->code;
}
public function getTable(): string
return $this->table;
* @param string $table
public function setTable(string $table): void
$this->table = $table;