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