PackageServiceInterface.php 268 B

12345678910111213
  1. <?php
  2. namespace Yxy\Service;
  3. interface PackageServiceInterface
  4. {
  5. /**
  6. * @param string $source_file
  7. * @param string $save_file
  8. * @param array $param
  9. */
  10. public function createPack(string $source_file, string $save_file, array $param = []);
  11. }