We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c3b5f3 commit 3c46d10Copy full SHA for 3c46d10
app/code/Magento/AwsS3/Test/Mftf/Helper/S3FileAssertions.php
@@ -92,6 +92,20 @@ public function deleteFileIfExists($filePath): void
92
}
93
94
95
+ /**
96
+ * Copy source into destination
97
+ *
98
+ * @param string $source
99
+ * @param string $destination
100
+ * @return void
101
102
+ * @throws \Magento\Framework\Exception\FileSystemException
103
+ */
104
+ public function copy($source, $destination): void
105
+ {
106
+ $this->driver->copy($source, $destination);
107
+ }
108
+
109
/**
110
* Create directory in the S3 bucket
111
*
0 commit comments