Glendale.php 759 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace App\Services\File\BIM\Glendale;
  3. use App\Services\File\BIM\Contacts\BIMContact;
  4. use Illuminate\Http\UploadedFile;
  5. class Glendale implements BIMContact
  6. {
  7. public function uploadFile(UploadedFile $file, array $params = [])
  8. {
  9. // TODO: Implement uploadFile() method.
  10. }
  11. public function downloadSourceFile()
  12. {
  13. // TODO: Implement downloadSourceFile() method.
  14. }
  15. public function findConvertStatus(string $dataSetId)
  16. {
  17. // TODO: Implement findConvertStatus() method.
  18. }
  19. public function viewDataSetModel(array $dataSetIDS)
  20. {
  21. // TODO: Implement viewDataSetModel() method.
  22. }
  23. public function addToConvertQueue(string $dataSetId): array
  24. {
  25. return [];
  26. }
  27. }