From 460bfd45c1b7020e0a986158225c5ec4c9d09401 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Tue, 3 Mar 2020 20:12:14 +0100 Subject: [PATCH] wip #3458 --- src/app/Magic/Models/CubistMagicAbstractModel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/Magic/Models/CubistMagicAbstractModel.php b/src/app/Magic/Models/CubistMagicAbstractModel.php index 6626a30..324fe91 100644 --- a/src/app/Magic/Models/CubistMagicAbstractModel.php +++ b/src/app/Magic/Models/CubistMagicAbstractModel.php @@ -307,7 +307,7 @@ class CubistMagicAbstractModel extends Model implements HasMedia 'SINGULAR' => $this->getOption('singular', $this->getOption('name')), 'PLURAL' => $this->getOption('plural', ''), 'MODELNAMESPACE' => get_class($this), - 'EXTENDS' => $this->_getBaseController(), + 'EXTENDS' => '\\' . $this->_getBaseController(), 'CLONABLE' => $this->clonable ? 'true' : 'false', 'BULK' => $this->getOption('bulk', true) ? 'true' : 'false', 'ONEINSTANCE' => $this->getOption('oneinstance', false) ? 'true' : 'false']; -- 2.39.5