QueuedExport.php 466 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace Maatwebsite\Excel\Tests\Data\Stubs;
  3. use Maatwebsite\Excel\Concerns\Exportable;
  4. use Maatwebsite\Excel\Concerns\WithMultipleSheets;
  5. class QueuedExport implements WithMultipleSheets
  6. {
  7. use Exportable;
  8. /**
  9. * @return SheetWith100Rows[]
  10. */
  11. public function sheets(): array
  12. {
  13. return [
  14. new SheetWith100Rows('A'),
  15. new SheetWith100Rows('B'),
  16. new SheetWith100Rows('C'),
  17. ];
  18. }
  19. }