@@ -48,12 +48,4 @@ interface AliOssServiceInterface
* @return mixed
*/
public function deleteObject($object): bool;
-
- /**
- * 创建OSS上传临时凭证
- *
- * @return array
- */
- public function createPutSTS(): array;
}
@@ -0,0 +1,13 @@
+<?php
+
+namespace Yxy\Service;
+interface AliStsServiceInterface
+{
+ /**
+ * 创建OSS上传凭证
+ *
+ * @return array
+ */
+ public function createOssPut(): array;
+}