Cloud.php 265 B

1234567891011121314
  1. <?php
  2. namespace common\modules\attachment\components\contracts;
  3. interface Cloud extends Filesystem
  4. {
  5. /**
  6. * Get the URL for the file at the given path.
  7. *
  8. * @param string $path
  9. * @return string
  10. */
  11. public function getUrl($path);
  12. }