22 lines
470 B
PHP
22 lines
470 B
PHP
![]() |
<?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
|
||
|
]);
|
||
|
}
|
||
|
}
|