WithTitleExport.php 324 B

12345678910111213141516171819
  1. <?php
  2. namespace Maatwebsite\Excel\Tests\Data\Stubs;
  3. use Maatwebsite\Excel\Concerns\Exportable;
  4. use Maatwebsite\Excel\Concerns\WithTitle;
  5. class WithTitleExport implements WithTitle
  6. {
  7. use Exportable;
  8. /**
  9. * @return string
  10. */
  11. public function title(): string
  12. {
  13. return 'given-title';
  14. }
  15. }