init
This commit is contained in:
19
app/Service/Entities/BaseReport.php
Normal file
19
app/Service/Entities/BaseReport.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Service\Entities;
|
||||
|
||||
use App\Service\Enums\Status;
|
||||
use App\Service\Enums\Type;
|
||||
use Carbon\Carbon;
|
||||
use DateTimeImmutable;
|
||||
|
||||
abstract class BaseReport
|
||||
{
|
||||
public Type $type;
|
||||
public string $description = '';
|
||||
public ?Carbon $serviceDate = null;
|
||||
public Status $status = Status::NEW;
|
||||
public string $serviceNotes = '';
|
||||
public ?string $contactPhone = null;
|
||||
public DateTimeImmutable $createdAt;
|
||||
}
|
||||
Reference in New Issue
Block a user