| Current Path : /var/www/v3.cesa.co.za/src/MemberBundle/Form/Model/ |
| Current File : /var/www/v3.cesa.co.za/src/MemberBundle/Form/Model/MemberFirmTransformationCapture.php |
<?php
namespace App\MemberBundle\Form\Model;
use App\MemberBundle\Validator\Constraints\TransformationStaffHeadcountMatches;
/**
* Submitted transformation data: firm profile fields that feed the reporting
* pipeline together with the staff grid (see MemberFirmTransformationPortalService::TRANSFORMATION_COUNT_FIELDS).
*/
#[TransformationStaffHeadcountMatches]
class MemberFirmTransformationCapture
{
public string $smme = '';
public string $blackOwned = '';
public string $blackWomenOwned = '';
public ?int $bbbeeLevel = null;
public ?int $totalStaff = null;
public ?string $threeYearsAverageTurnover = null;
/** @var array<string, int> */
public array $trans = [];
}