14 lines
207 B
PHP
14 lines
207 B
PHP
<?php
|
|
|
|
namespace App\Domain\ReportDuty\Models\ValueObjects;
|
|
|
|
class PeriodStart
|
|
{
|
|
const FIELD_NAME = 'period_start';
|
|
|
|
public function getField(): string
|
|
{
|
|
return self::FIELD_NAME;
|
|
}
|
|
}
|