54 lines
925 B
PHP
54 lines
925 B
PHP
<?php
|
|
|
|
namespace Dipper\Excel;
|
|
|
|
use Dipper\Excel\Concerns\WithLimit;
|
|
use Dipper\Excel\Concerns\Importable;
|
|
use Dipper\Excel\Concerns\WithMapping;
|
|
use Dipper\Excel\Concerns\WithStartRow;
|
|
use Dipper\Excel\Imports\HeadingRowFormatter;
|
|
|
|
class HeadingRowImport implements WithStartRow, WithLimit, WithMapping
|
|
{
|
|
use Importable;
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
private $headingRow;
|
|
|
|
/**
|
|
* @param int $headingRow
|
|
*/
|
|
public function __construct(int $headingRow = 1)
|
|
{
|
|
$this->headingRow = $headingRow;
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function startRow(): int
|
|
{
|
|
return $this->headingRow;
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function limit(): int
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $row
|
|
*
|
|
* @return array
|
|
*/
|
|
public function map($row): array
|
|
{
|
|
return HeadingRowFormatter::format($row);
|
|
}
|
|
}
|