Factory.php 614 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. declare(strict_types=1);
  3. namespace catcher\library\excel;
  4. use catcher\exceptions\FailedException;
  5. use PhpOffice\PhpSpreadsheet\Writer\Csv;
  6. use PhpOffice\PhpSpreadsheet\Writer\Xls;
  7. use PhpOffice\PhpSpreadsheet\Writer\Xlsx;
  8. class Factory
  9. {
  10. public static function make($type)
  11. {
  12. if ($type === 'xlsx') {
  13. return app(Xlsx::class);
  14. }
  15. if ($type === 'xls') {
  16. return app(Xls::class);
  17. }
  18. if ($type === 'csv') {
  19. return app(Csv::class);
  20. }
  21. throw new FailedException(sprintf('Type [%s] not support', $type));
  22. }
  23. }