Factory.php 294 B

1234567891011121314
  1. <?php
  2. namespace common\modules\attachment\components\contracts;
  3. interface Factory
  4. {
  5. /**
  6. * Get a filesystem implementation.
  7. *
  8. * @param string $name
  9. * @return \common\modules\attachment\components\contracts\Filesystem
  10. */
  11. public function disk($name = null);
  12. }