Table of Contents
Interfaces
- FieldValueRepository
Methods
-
add()
: FieldValue
-
getByFieldAndEmployee()
: FieldValue|null
-
getByFieldIdsAndEmployeeIds()
: FieldValueCollection
-
getByUnique()
: FieldValue|null
-
listExpiredIds()
: array<string|int, mixed>
-
removeByIds()
: void
-
update()
: FieldValue
add()
public
add(FieldValue $item) : FieldValue
Parameters
-
$item
: FieldValue
-
getByFieldAndEmployee()
public
getByFieldAndEmployee(Field $field, Employee $employee) : FieldValue|null
Parameters
-
$field
: Field
-
-
$employee
: Employee
-
getByFieldIdsAndEmployeeIds()
public
getByFieldIdsAndEmployeeIds(array<string|int, mixed> $fieldIds, array<string|int, mixed> $employeeIds) : FieldValueCollection
Parameters
-
$fieldIds
: array<string|int, mixed>
-
-
$employeeIds
: array<string|int, mixed>
-
getByUnique()
public
getByUnique(int $employeeId, int $fieldId) : FieldValue|null
Parameters
-
$employeeId
: int
-
-
$fieldId
: int
-
listExpiredIds()
public
listExpiredIds([int $limit = 100 ]) : array<string|int, mixed>
Parameters
-
$limit
: int
= 100
-
Return values
array<string|int, mixed>
removeByIds()
public
removeByIds(array<string|int, mixed> $ids) : void
Parameters
-
$ids
: array<string|int, mixed>
-
update()
public
update(FieldValue $item) : FieldValue
Parameters
-
$item
: FieldValue
-