File "OnEachRow.php"
Full Path: /home/isoftco/public_html/hrm/vendor/maatwebsite/excel/src/Concerns/OnEachRow.php
File size: 174 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Maatwebsite\Excel\Concerns;
use Maatwebsite\Excel\Row;
interface OnEachRow
{
/**
* @param Row $row
*/
public function onRow(Row $row);
}