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