Browse Source

增加打包服务接口类

alexzy 3 năm trước cách đây
mục cha
commit
71ac8c05b8
1 tập tin đã thay đổi với 13 bổ sung0 xóa
  1. 13 0
      src/PackageServiceInterface.php

+ 13 - 0
src/PackageServiceInterface.php

@@ -0,0 +1,13 @@
+<?php
+
+namespace Yxy\Service;
+
+interface PackageServiceInterface
+{
+    /**
+     * @param string $source_file
+     * @param string $save_file
+     * @param array $param
+     */
+    public function createPack(string $source_file, string $save_file, array $param = []);
+}