src/Entity/Work.php line 10
<?phpnamespace App\Entity;use App\Repository\WorkRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: WorkRepository::class)]class Work extends BaseEntity{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(length: 255)]private ?string $cliente = null;#[ORM\Column(length: 255)]private ?string $titulo = null;#[ORM\Column(type: Types::TEXT, nullable: true)]private ?string $descripcion = null;#[ORM\Column(length: 255, nullable: true)]private ?string $pathImagen = null;#[ORM\Column(length: 255, nullable: true)]private ?string $pathVideo = null;#[ORM\Column(nullable: true)]private ?int $peso = 1;public function getId(): ?int{return $this->id;}public function getCliente(): ?string{return $this->cliente;}public function setCliente(string $cliente): self{$this->cliente = $cliente;return $this;}public function getTitulo(): ?string{return $this->titulo;}public function setTitulo(string $titulo): self{$this->titulo = $titulo;return $this;}public function getDescripcion(): ?string{return $this->descripcion;}public function setDescripcion(?string $descripcion): self{$this->descripcion = $descripcion;return $this;}public function getPathImagen(): ?string{return $this->pathImagen;}public function setPathImagen(?string $pathImagen): self{$this->pathImagen = $pathImagen;return $this;}public function getPathVideo(): ?string{return $this->pathVideo;}public function setPathVideo(?string $pathVideo): self{$this->pathVideo = $pathVideo;return $this;}public function getPeso(): ?int{return $this->peso;}public function setPeso(?int $peso): self{$this->peso = $peso;return $this;}}