diff --git a/composer.json b/composer.json index dfab01d..b1103bc 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "regnerisch/laravel-beyond", "type": "library", "license": "ISC", - "version": "2.3.1", + "version": "2.3.2", "autoload": { "psr-4": { "Regnerisch\\LaravelBeyond\\": "src/" diff --git a/src/Actions/CopyFileAction.php b/src/Actions/CopyFileAction.php index 1eb6d0f..f12b730 100644 --- a/src/Actions/CopyFileAction.php +++ b/src/Actions/CopyFileAction.php @@ -16,7 +16,7 @@ public function execute(string $srcPath, string $targetPath) true ); - $fs->move( + $fs->copy( $srcPath, $targetPath, );