14 lines
187 B
PHP
14 lines
187 B
PHP
<?php
|
|
|
|
namespace Maatwebsite\Excel\Concerns;
|
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
interface FromCollection
|
|
{
|
|
/**
|
|
* @return Collection
|
|
*/
|
|
public function collection();
|
|
}
|