<?php
namespace Maatwebsite\Excel\Concerns;
/**
* @template RowType of mixed
*/
interface WithMapping
{
/**
* @param RowType $row
* @return array
*/
public function map($row): array;
}
For code examples and implementation guides, please refer to the “Examples” section on our developer portal. Go to GitHub Repository