Skip to content

Commit 927281e

Browse files
committed
Merge remote-tracking branch 'upstream/5.4-dev' into upmerges/2025-08-20
2 parents fc2ebcc + b52b408 commit 927281e

File tree

26 files changed

+71
-71
lines changed

26 files changed

+71
-71
lines changed

administrator/components/com_fields/src/Plugin/FieldsPlugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ abstract class FieldsPlugin extends CMSPlugin
4646
* @var \Joomla\CMS\Application\CMSApplication
4747
* @since 4.0.0
4848
*
49-
* @deprecated 6.0.0 will be removed in 7.0 use $this->getApplication() instead
49+
* @deprecated 5.4.0 will be removed in 7.0 use $this->getApplication() instead
5050
*/
5151
protected $app;
5252

administrator/modules/mod_latest/services/provider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* The latest articles module service provider.
2121
*
22-
* @since 6.0.0
22+
* @since 5.4.0
2323
*/
2424
return new class () implements ServiceProviderInterface {
2525
/**
@@ -29,7 +29,7 @@
2929
*
3030
* @return void
3131
*
32-
* @since 6.0.0
32+
* @since 5.4.0
3333
*/
3434
public function register(Container $container)
3535
{

administrator/modules/mod_latest/src/Dispatcher/Dispatcher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/**
2525
* Dispatcher class for mod_latest
2626
*
27-
* @since 6.0.0
27+
* @since 5.4.0
2828
*/
2929
class Dispatcher extends AbstractModuleDispatcher implements HelperFactoryAwareInterface
3030
{

administrator/modules/mod_latest/src/Helper/LatestHelper.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class LatestHelper
3737
*
3838
* @return mixed An array of articles, or false on error.
3939
*
40-
* @since 6.0.0
40+
* @since 5.4.0
4141
*/
4242
public function getArticles(Registry $params, ArticlesModel $model, CMSApplicationInterface $app): mixed
4343
{
@@ -115,7 +115,7 @@ public function getArticles(Registry $params, ArticlesModel $model, CMSApplicati
115115
*
116116
* @return string The alternate title for the module.
117117
*
118-
* @since 6.0.0
118+
* @since 5.4.0
119119
*/
120120
public function getModuleTitle(Registry $params, CMSApplicationInterface $app): string
121121
{
@@ -148,7 +148,7 @@ public function getModuleTitle(Registry $params, CMSApplicationInterface $app):
148148
*
149149
* @return mixed An array of articles, or false on error.
150150
*
151-
* @deprecated 6.0.0 will be removed in 7.0
151+
* @deprecated 5.4.0 will be removed in 7.0
152152
* Use the non-static method getArticles
153153
* Example: Factory::getApplication()->bootModule('mod_latest', 'administrator')
154154
* ->getHelper('LatestHelper')
@@ -166,7 +166,7 @@ public static function getList(Registry $params, ArticlesModel $model)
166166
*
167167
* @return string The alternate title for the module.
168168
*
169-
* @deprecated 6.0.0 will be removed in 7.0
169+
* @deprecated 5.4.0 will be removed in 7.0
170170
* Use the non-static method getModuleTitle
171171
* Example: Factory::getApplication()->bootModule('mod_latest', 'administrator')
172172
* ->getHelper('LatestHelper')

administrator/modules/mod_logged/services/provider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* The logged-in users module service provider.
2121
*
22-
* @since 6.0.0
22+
* @since 5.4.0
2323
*/
2424
return new class () implements ServiceProviderInterface {
2525
/**
@@ -29,7 +29,7 @@
2929
*
3030
* @return void
3131
*
32-
* @since 6.0.0
32+
* @since 5.4.0
3333
*/
3434
public function register(Container $container)
3535
{

administrator/modules/mod_logged/src/Helper/LoggedHelper.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class LoggedHelper
3737
*
3838
* @return mixed An array of users, or false on error.
3939
*
40-
* @since 6.0.0
40+
* @since 5.4.0
4141
*
4242
* @throws \RuntimeException
4343
*/
@@ -82,7 +82,7 @@ public function getUsers(Registry $params, CMSApplication $app, DatabaseInterfac
8282
*
8383
* @param Registry $params The module parameters.
8484
*
85-
* @since 6.0.0
85+
* @since 5.4.0
8686
*
8787
* @return string The alternate title for the module.
8888
*/
@@ -102,7 +102,7 @@ public function getModuleTitle($params): string
102102
*
103103
* @throws \RuntimeException
104104
*
105-
* @deprecated 6.0.0 will be removed in 7.0
105+
* @deprecated 5.4.0 will be removed in 7.0
106106
* Use the non-static method getUsers
107107
* Example: Factory::getApplication()->bootModule('mod_logged', 'administrator')
108108
* ->getHelper('LoggedHelper')
@@ -120,7 +120,7 @@ public static function getList(Registry $params, CMSApplication $app, DatabaseIn
120120
*
121121
* @return string The alternate title for the module.
122122
*
123-
* @deprecated 6.0.0 will be removed in 7.0
123+
* @deprecated 5.4.0 will be removed in 7.0
124124
* Use the non-static method getModuleTitle
125125
* Example: Factory::getApplication()->bootModule('mod_logged', 'administrator')
126126
* ->getHelper('LoggedHelper')

administrator/modules/mod_privacy_dashboard/services/provider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* The privacy dashboard module service provider.
2121
*
22-
* @since 6.0.0
22+
* @since 5.4.0
2323
*/
2424
return new class () implements ServiceProviderInterface {
2525
/**
@@ -29,7 +29,7 @@
2929
*
3030
* @return void
3131
*
32-
* @since 6.0.0
32+
* @since 5.4.0
3333
*/
3434
public function register(Container $container)
3535
{

administrator/modules/mod_privacy_dashboard/src/Dispatcher/Dispatcher.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/**
2424
* Dispatcher class for mod_privacy_dashboard
2525
*
26-
* @since 6.0.0
26+
* @since 5.4.0
2727
*/
2828
class Dispatcher extends AbstractModuleDispatcher implements HelperFactoryAwareInterface
2929
{
@@ -34,7 +34,7 @@ class Dispatcher extends AbstractModuleDispatcher implements HelperFactoryAwareI
3434
*
3535
* @return void
3636
*
37-
* @since 6.0.0
37+
* @since 5.4.0
3838
*/
3939
public function dispatch()
4040
{
@@ -97,7 +97,7 @@ public function dispatch()
9797
*
9898
* @return array
9999
*
100-
* @since 6.0.0
100+
* @since 5.4.0
101101
*/
102102
protected function getLayoutData()
103103
{

administrator/modules/mod_privacy_dashboard/src/Helper/PrivacyDashboardHelper.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class PrivacyDashboardHelper implements DatabaseAwareInterface
3333
*
3434
* @return array Array containing site privacy requests
3535
*
36-
* @since 6.0.0
36+
* @since 5.4.0
3737
*/
3838
public function getPrivacyRequests(): array
3939
{
@@ -66,7 +66,7 @@ public function getPrivacyRequests(): array
6666
*
6767
* @since 3.9.0
6868
*
69-
* @deprecated 6.0.0 will be removed in 7.0
69+
* @deprecated 5.4.0 will be removed in 7.0
7070
* Use the non-static method getPrivacyRequests
7171
* Example: Factory::getApplication()->bootModule('mod_privacy_dashboard', 'administrator')
7272
* ->getHelper('PrivacyDashboardHelper')

administrator/modules/mod_submenu/services/provider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/**
1919
* The administrator dashboard menu module service provider.
2020
*
21-
* @since 6.0.0
21+
* @since 5.4.0
2222
*/
2323
return new class () implements ServiceProviderInterface {
2424
/**
@@ -28,7 +28,7 @@
2828
*
2929
* @return void
3030
*
31-
* @since 6.0.0
31+
* @since 5.4.0
3232
*/
3333
public function register(Container $container)
3434
{

0 commit comments

Comments
 (0)