Files
oficial/app/src/Model/Venta/Comentario.php

22 lines
470 B
PHP
Raw Normal View History

<?php
namespace Incoviba\Model\Venta;
use DateTimeInterface;
use Incoviba\Common\Ideal;
class Comentario extends Ideal\Model
{
public DateTimeInterface $fecha;
public string $texto;
public bool $activo;
public function jsonSerialize(): mixed
{
return array_merge(parent::jsonSerialize(), [
'fecha' => $this->fecha->format('Y-m-d'),
'texto' => $this->texto,
'activo' => $this->activo
]);
}
}