| 4 | use Magento\Framework\View\Element\Block\ArgumentInterface; |
| 5 | |
| 6 | interface DataProcessorInterface extends ArgumentInterface |
| 7 | { |
| 8 | /** |
| 9 | * Process the data for a specific field |
| 10 | * |
| 11 | * @param string $field |
| 12 | * @param mixed $value |
| 13 | * @param array $row |
| 14 | * @return string |
| 15 | */ |
| 16 | public function process(string $field, $value, array $row = []): string; |
| 17 | |
| 18 | /** |
| 19 | * Return the execution order (lower runs first) |
| 20 | */ |
| 21 | public function getOrder(): int; |
| 22 | } |
nothing calls this directly
no outgoing calls
no test coverage detected