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