Skip to content

Commit d0ba16f

Browse files
authored
Change item type to stdClass (#42960)
1 parent 047b110 commit d0ba16f

File tree

19 files changed

+21
-33
lines changed

19 files changed

+21
-33
lines changed

administrator/components/com_banners/src/View/Client/HtmlView.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
use Joomla\CMS\Language\Text;
1818
use Joomla\CMS\MVC\View\GenericDataException;
1919
use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView;
20-
use Joomla\CMS\Object\CMSObject;
2120
use Joomla\CMS\Toolbar\Toolbar;
2221
use Joomla\CMS\Toolbar\ToolbarHelper;
2322
use Joomla\Component\Banners\Administrator\Model\ClientModel;
@@ -44,7 +43,7 @@ class HtmlView extends BaseHtmlView
4443
/**
4544
* The active item
4645
*
47-
* @var CMSObject
46+
* @var \stdClass
4847
* @since 1.5
4948
*/
5049
protected $item;

administrator/components/com_fields/src/View/Field/HtmlView.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
use Joomla\CMS\Language\Text;
1616
use Joomla\CMS\MVC\View\GenericDataException;
1717
use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView;
18-
use Joomla\CMS\Object\CMSObject;
1918
use Joomla\CMS\Toolbar\Toolbar;
2019
use Joomla\CMS\Toolbar\ToolbarHelper;
2120
use Joomla\Filesystem\Path;
@@ -39,7 +38,7 @@ class HtmlView extends BaseHtmlView
3938
protected $form;
4039

4140
/**
42-
* @var CMSObject
41+
* @var \stdClass
4342
*
4443
* @since 3.7.0
4544
*/

administrator/components/com_fields/src/View/Group/HtmlView.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
use Joomla\CMS\Language\Text;
1616
use Joomla\CMS\MVC\View\GenericDataException;
1717
use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView;
18-
use Joomla\CMS\Object\CMSObject;
1918
use Joomla\CMS\Toolbar\Toolbar;
2019
use Joomla\CMS\Toolbar\ToolbarHelper;
2120
use Joomla\Component\Fields\Administrator\Helper\FieldsHelper;
@@ -40,7 +39,7 @@ class HtmlView extends BaseHtmlView
4039
protected $form;
4140

4241
/**
43-
* @var CMSObject
42+
* @var \stdClass
4443
*
4544
* @since 3.7.0
4645
*/

administrator/components/com_finder/src/View/Filter/HtmlView.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
use Joomla\CMS\Language\Text;
1616
use Joomla\CMS\MVC\View\GenericDataException;
1717
use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView;
18-
use Joomla\CMS\Object\CMSObject;
1918
use Joomla\CMS\Toolbar\Toolbar;
2019
use Joomla\CMS\Toolbar\ToolbarHelper;
2120

@@ -51,7 +50,7 @@ class HtmlView extends BaseHtmlView
5150
/**
5251
* The active item
5352
*
54-
* @var CMSObject|boolean
53+
* @var \stdClass
5554
*
5655
* @since 3.6.2
5756
*/

administrator/components/com_guidedtours/src/View/Step/HtmlView.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class HtmlView extends BaseHtmlView
3838
/**
3939
* The active item
4040
*
41-
* @var object
41+
* @var \stdClass
4242
*/
4343
protected $item;
4444

administrator/components/com_mails/src/View/Template/HtmlView.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class HtmlView extends BaseHtmlView
3939
/**
4040
* The active item
4141
*
42-
* @var CMSObject
42+
* @var \stdClass
4343
*/
4444
protected $item;
4545

administrator/components/com_menus/src/View/Item/HtmlView.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
use Joomla\CMS\Language\Text;
1818
use Joomla\CMS\MVC\View\GenericDataException;
1919
use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView;
20-
use Joomla\CMS\Object\CMSObject;
2120
use Joomla\CMS\Toolbar\Toolbar;
2221
use Joomla\CMS\Toolbar\ToolbarHelper;
2322

@@ -42,7 +41,7 @@ class HtmlView extends BaseHtmlView
4241
/**
4342
* The active item
4443
*
45-
* @var CMSObject
44+
* @var \stdClass
4645
*/
4746
protected $item;
4847

administrator/components/com_newsfeeds/src/View/Newsfeeds/HtmlView.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
use Joomla\CMS\Language\Text;
1717
use Joomla\CMS\MVC\View\GenericDataException;
1818
use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView;
19-
use Joomla\CMS\Object\CMSObject;
2019
use Joomla\CMS\Toolbar\Button\DropdownButton;
2120
use Joomla\CMS\Toolbar\Toolbar;
2221
use Joomla\CMS\Toolbar\ToolbarHelper;
@@ -35,7 +34,7 @@ class HtmlView extends BaseHtmlView
3534
/**
3635
* The list of newsfeeds
3736
*
38-
* @var CMSObject
37+
* @var array
3938
*
4039
* @since 1.6
4140
*/

administrator/components/com_plugins/src/View/Plugin/HtmlView.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
use Joomla\CMS\Language\Text;
1616
use Joomla\CMS\MVC\View\GenericDataException;
1717
use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView;
18-
use Joomla\CMS\Object\CMSObject;
1918
use Joomla\CMS\Toolbar\Toolbar;
2019
use Joomla\CMS\Toolbar\ToolbarHelper;
2120

@@ -33,7 +32,7 @@ class HtmlView extends BaseHtmlView
3332
/**
3433
* The item object for the newsfeed
3534
*
36-
* @var CMSObject
35+
* @var \stdClass
3736
*/
3837
protected $item;
3938

administrator/components/com_privacy/src/View/Request/HtmlView.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
use Joomla\CMS\Language\Text;
1616
use Joomla\CMS\MVC\View\GenericDataException;
1717
use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView;
18-
use Joomla\CMS\Object\CMSObject;
1918
use Joomla\CMS\Router\Route;
2019
use Joomla\CMS\Session\Session;
2120
use Joomla\CMS\Toolbar\Toolbar;
@@ -52,7 +51,7 @@ class HtmlView extends BaseHtmlView
5251
/**
5352
* The item record
5453
*
55-
* @var CMSObject
54+
* @var \stdClass
5655
* @since 3.9.0
5756
*/
5857
protected $item;

0 commit comments

Comments
 (0)