1234567891011121314151617181920212223 |
- <?php
- namespace Maatwebsite\Excel\Tests\Data\Stubs;
- use Maatwebsite\Excel\Concerns\Exportable;
- use Maatwebsite\Excel\Concerns\WithMultipleSheets;
- class QueuedExport implements WithMultipleSheets
- {
- use Exportable;
- /**
- * @return SheetWith100Rows[]
- */
- public function sheets(): array
- {
- return [
- new SheetWith100Rows('A'),
- new SheetWith100Rows('B'),
- new SheetWith100Rows('C'),
- ];
- }
- }
|