From c6ba6f6f1ab95f710bc8e07c92f177ed85fbcd8b Mon Sep 17 00:00:00 2001 From: Awilum Date: Fri, 6 Sep 2019 11:20:12 +0300 Subject: [PATCH] chore(core): update Entries copy method --- flextype/core/Entries.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flextype/core/Entries.php b/flextype/core/Entries.php index f521d7a9..e08331ee 100755 --- a/flextype/core/Entries.php +++ b/flextype/core/Entries.php @@ -437,7 +437,7 @@ class Entries * * @access public */ - public function copy(string $id, string $new_id, bool $recursive = false) : bool + public function copy(string $id, string $new_id, bool $recursive = false) { return Filesystem::copy($this->_dir_location($id), $this->_dir_location($new_id), $recursive); }