PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
vendor
/
maatwebsite
/
excel
/
src
<?php namespace Maatwebsite\Excel; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\WithLimit; use Maatwebsite\Excel\Concerns\WithMapping; use Maatwebsite\Excel\Concerns\WithStartRow; use Maatwebsite\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); } }
[+]
Exceptions
[-] Reader.php
[edit]
[+]
Jobs
[-] DefaultValueBinder.php
[edit]
[+]
Cache
[+]
Factories
[-] Sheet.php
[edit]
[+]
Files
[+]
..
[-] HeadingRowImport.php
[edit]
[-] RegistersCustomConcerns.php
[edit]
[-] Exporter.php
[edit]
[-] DelegatedMacroable.php
[edit]
[+]
Filters
[-] Row.php
[edit]
[-] Importer.php
[edit]
[+]
Events
[+]
Validators
[-] SettingsProvider.php
[edit]
[+]
Transactions
[-] Writer.php
[edit]
[+]
Helpers
[-] MappedReader.php
[edit]
[-] ChunkReader.php
[edit]
[-] HasEventBus.php
[edit]
[-] ExcelServiceProvider.php
[edit]
[+]
Facades
[+]
Console
[+]
Imports
[-] Excel.php
[edit]
[-] QueuedWriter.php
[edit]
[+]
Concerns
[+]
Mixins
[+]
Fakes
[-] Cell.php
[edit]