jingcai-php/vendor/maatwebsite/excel/src/Concerns/WithMapping.php

13 lines
174 B
PHP
Executable File

<?php
namespace Maatwebsite\Excel\Concerns;
interface WithMapping
{
/**
* @param mixed $row
* @return array
*/
public function map($row): array;
}