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 961dd0c commit a875028Copy full SHA for a875028
administrator/components/com_messages/src/Model/ConfigModel.php
@@ -13,7 +13,6 @@
13
use Joomla\CMS\Component\ComponentHelper;
14
use Joomla\CMS\MVC\Model\FormModel;
15
use Joomla\Database\ParameterType;
16
-use Joomla\Registry\Registry;
17
18
// phpcs:disable PSR1.Files.SideEffects
19
\defined('_JEXEC') or die;
@@ -59,7 +58,7 @@ protected function populateState()
59
58
*/
60
public function getItem()
61
{
62
- $item = new Registry();
+ $item = new \stdClass();
63
$userid = (int) $this->getState('user.id');
64
65
$db = $this->getDatabase();
0 commit comments