File "WithMapping.php"

Full Path: /var/www/html/back/vendor/maatwebsite/excel/src/Concerns/WithMapping.php
File size: 214 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Maatwebsite\Excel\Concerns;

/**
 * @template RowType of mixed
 */
interface WithMapping
{
    /**
     * @param  RowType  $row
     * @return array
     */
    public function map($row): array;
}