From e9e290e2d137dc20ac2dd7d045845fecfc78bd3c Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Mon, 19 Jan 2026 12:03:23 +0100 Subject: [PATCH] wait #7947 @0:10 --- app/Models/FluidbookPublication.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Models/FluidbookPublication.php b/app/Models/FluidbookPublication.php index fadad2241..17dbe1dc9 100644 --- a/app/Models/FluidbookPublication.php +++ b/app/Models/FluidbookPublication.php @@ -953,7 +953,7 @@ class FluidbookPublication extends ToolboxStatusModel return true; } - protected function _baseReplicate(?array $except) + protected function _baseReplicate(?array $except=null) { $current = $this; if ($this->syncFromWorkshop()) { @@ -973,7 +973,7 @@ class FluidbookPublication extends ToolboxStatusModel return $new; } - public function replicateFull(?array $except) + public function replicateFull(?array $except=null) { $new = $this->_baseReplicate($except); if (!$this->composition_fluidbook && $this->version >= 3) { @@ -990,7 +990,7 @@ class FluidbookPublication extends ToolboxStatusModel return $new; } - public function replicateSettings(?array $except) + public function replicateSettings(?array $except=null) { $new = $this->_baseReplicate(array_merge($except ?? [], ['composition'])); $new->composition = []; -- 2.39.5