RowUpdaterInterface
Interface each single row updater must implement.
Table of Contents
Methods
- getTitle() : string
- Get a description of this single row updater
- hasPotentialUpdateForTable() : bool
- Return true if this row updater may have updates for given table rows.
- updateTableRow() : array<string|int, mixed>
- Update a single row from a table.
Methods
getTitle()
Get a description of this single row updater
public
getTitle() : string
Return values
stringhasPotentialUpdateForTable()
Return true if this row updater may have updates for given table rows.
public
hasPotentialUpdateForTable(string $tableName) : bool
Parameters
- $tableName : string
-
Given table
Return values
boolupdateTableRow()
Update a single row from a table.
public
updateTableRow(string $tableName, array<string|int, mixed> $row) : array<string|int, mixed>
Parameters
- $tableName : string
-
Given table
- $row : array<string|int, mixed>
-
Given row
Return values
array<string|int, mixed> —Potentially modified row