Skip to content

Commit

Permalink
Merge branch '4.2-dev' into replace_factory_getapplication_in_control…
Browse files Browse the repository at this point in the history
…lers
  • Loading branch information
laoneo committed Jun 23, 2022
2 parents 094660f + b12020a commit 4fa4485
Show file tree
Hide file tree
Showing 40 changed files with 106 additions and 106 deletions.
4 changes: 2 additions & 2 deletions administrator/components/com_joomlaupdate/extract.php
Expand Up @@ -1946,7 +1946,7 @@ function getConfiguration(): ?array
* Sets the PHP timeout to 3600 seconds
*
* @return void
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
function setLongTimeout()
{
Expand All @@ -1962,7 +1962,7 @@ function setLongTimeout()
* Sets the memory limit to 1GiB
*
* @return void
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
function setHugeMemoryLimit()
{
Expand Down
Expand Up @@ -588,7 +588,7 @@ public function fetchExtensionCompatibility()
* Called by the Joomla Update JavaScript (PreUpdateChecker.checkNextChunk).
*
* @return void
* @since __DEPLOY_VERSION__
* @since 4.2.0
*
*/
public function batchextensioncompatibility()
Expand Down
Expand Up @@ -119,15 +119,15 @@ class HtmlView extends BaseHtmlView
* Should I disable the confirmation checkbox for pre-update extension version checks?
*
* @var boolean
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
protected $noVersionCheck = false;

/**
* Should I disable the confirmation checkbox for taking a backup before updating?
*
* @var boolean
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
protected $noBackupCheck = false;

Expand Down
Expand Up @@ -55,7 +55,7 @@ class HtmlView extends BaseHtmlView
* Should I disable the confirmation checkbox for taking a backup before updating?
*
* @var boolean
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
protected $noBackupCheck = false;

Expand Down
Expand Up @@ -174,7 +174,7 @@ protected function getListQuery()
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
public function purge(int $userId): void
{
Expand Down
Expand Up @@ -79,7 +79,7 @@ public function unpublish()
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
public function republish()
{
Expand All @@ -105,7 +105,7 @@ public function republish()
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
public function archive()
{
Expand Down
Expand Up @@ -127,7 +127,7 @@ public function unpublishMessage($id)
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
public function archiveMessage($id)
{
Expand All @@ -152,7 +152,7 @@ public function archiveMessage($id)
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
public function republishMessage($id)
{
Expand Down
Expand Up @@ -743,7 +743,7 @@ public function getHelp()
*
* @return stdClass
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
public function getAdminTemplate(int $styleId): stdClass
{
Expand Down Expand Up @@ -789,7 +789,7 @@ public function getAdminTemplate(int $styleId): stdClass
*
* @return array
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
public function getSiteTemplates(): array
{
Expand Down
2 changes: 1 addition & 1 deletion administrator/manifests/files/joomla.xml
Expand Up @@ -6,7 +6,7 @@
<authorUrl>www.joomla.org</authorUrl>
<copyright>(C) 2019 Open Source Matters, Inc.</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<version>4.2.0-beta2-dev</version>
<version>4.2.0-dev</version>
<creationDate>2022-06</creationDate>
<description>FILES_JOOMLA_XML_DESCRIPTION</description>

Expand Down
6 changes: 3 additions & 3 deletions build/media_source/system/js/core.es6.js
Expand Up @@ -573,7 +573,7 @@ window.Joomla.Modal = window.Joomla.Modal || {
*
* @type {Array}
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
const requestQueue = [];

Expand All @@ -582,7 +582,7 @@ window.Joomla.Modal = window.Joomla.Modal || {
*
* @type {boolean}
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
let performingQueuedRequest = false;

Expand Down Expand Up @@ -624,7 +624,7 @@ window.Joomla.Modal = window.Joomla.Modal || {
/**
* Processes queued Request objects.
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
const processQueuedRequests = () => {
if (performingQueuedRequest || requestQueue.length === 0) {
Expand Down
4 changes: 2 additions & 2 deletions components/com_tags/src/Helper/RouteHelper.php
Expand Up @@ -105,7 +105,7 @@ public static function getTagRoute($id)
*
* @return string URL link to pass to the router
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
* @throws Exception
*/
public static function getComponentTagRoute(string $id, string $language = '*'): string
Expand Down Expand Up @@ -167,7 +167,7 @@ public static function getTagsRoute()
*
* @return string URL link to pass to the router
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
* @throws Exception
*/
public static function getComponentTagsRoute(string $language = '*'): string
Expand Down
2 changes: 1 addition & 1 deletion components/com_users/src/Model/LoginModel.php
Expand Up @@ -128,7 +128,7 @@ protected function preprocessForm(Form $form, $data, $group = 'user')
*
* @return string
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
public function getMenuLanguage(int $id): string
{
Expand Down
4 changes: 2 additions & 2 deletions libraries/src/Cache/CacheControllerFactoryAwareInterface.php
Expand Up @@ -13,7 +13,7 @@
/**
* Interface to be implemented by classes depending on a cache controller factory.
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
interface CacheControllerFactoryAwareInterface
{
Expand All @@ -24,7 +24,7 @@ interface CacheControllerFactoryAwareInterface
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
public function setCacheControllerFactory(CacheControllerFactoryInterface $factory): void;
}
8 changes: 4 additions & 4 deletions libraries/src/Cache/CacheControllerFactoryAwareTrait.php
Expand Up @@ -15,7 +15,7 @@
/**
* Defines the trait for a CacheControllerFactoryInterface Aware Class.
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
trait CacheControllerFactoryAwareTrait
{
Expand All @@ -24,7 +24,7 @@ trait CacheControllerFactoryAwareTrait
*
* @var CacheControllerFactoryInterface
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
private $cacheControllerFactory;

Expand All @@ -33,7 +33,7 @@ trait CacheControllerFactoryAwareTrait
*
* @return CacheControllerFactoryInterface
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
protected function getCacheControllerFactory(): CacheControllerFactoryInterface
{
Expand All @@ -57,7 +57,7 @@ protected function getCacheControllerFactory(): CacheControllerFactoryInterface
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
public function setCacheControllerFactory(CacheControllerFactoryInterface $cacheControllerFactory = null): void
{
Expand Down
2 changes: 1 addition & 1 deletion libraries/src/Console/AddUserCommand.php
Expand Up @@ -104,7 +104,7 @@ class AddUserCommand extends AbstractCommand
*
* @param DatabaseInterface $db The database
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
public function __construct(DatabaseInterface $db)
{
Expand Down
2 changes: 1 addition & 1 deletion libraries/src/Console/AddUserToGroupCommand.php
Expand Up @@ -78,7 +78,7 @@ class AddUserToGroupCommand extends AbstractCommand
*
* @param DatabaseInterface $db The database
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
public function __construct(DatabaseInterface $db)
{
Expand Down
2 changes: 1 addition & 1 deletion libraries/src/Console/DeleteUserCommand.php
Expand Up @@ -69,7 +69,7 @@ class DeleteUserCommand extends AbstractCommand
*
* @param DatabaseInterface $db The database
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
public function __construct(DatabaseInterface $db)
{
Expand Down
2 changes: 1 addition & 1 deletion libraries/src/Console/ExtensionRemoveCommand.php
Expand Up @@ -99,7 +99,7 @@ class ExtensionRemoveCommand extends AbstractCommand
*
* @param DatabaseInterface $db The database
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
public function __construct(DatabaseInterface $db)
{
Expand Down
2 changes: 1 addition & 1 deletion libraries/src/Console/ListUserCommand.php
Expand Up @@ -48,7 +48,7 @@ class ListUserCommand extends AbstractCommand
*
* @param DatabaseInterface $db The database
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
public function __construct(DatabaseInterface $db)
{
Expand Down
2 changes: 1 addition & 1 deletion libraries/src/Console/RemoveUserFromGroupCommand.php
Expand Up @@ -78,7 +78,7 @@ class RemoveUserFromGroupCommand extends AbstractCommand
*
* @param DatabaseInterface $db The database
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
public function __construct(DatabaseInterface $db)
{
Expand Down
2 changes: 1 addition & 1 deletion libraries/src/Installer/InstallerAdapter.php
Expand Up @@ -1395,7 +1395,7 @@ public function update()
*
* @return mixed The value of the element if set, null otherwise
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*
* @deprecated 5.0 Use getDatabase() instead of directly accessing db
*/
Expand Down
2 changes: 1 addition & 1 deletion libraries/src/MVC/Factory/MVCFactory.php
Expand Up @@ -366,7 +366,7 @@ private function setRouterOnObject($object): void
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
private function setCacheControllerOnObject($object): void
{
Expand Down
8 changes: 4 additions & 4 deletions libraries/src/Plugin/CMSPlugin.php
Expand Up @@ -81,7 +81,7 @@ abstract class CMSPlugin implements DispatcherAwareInterface, PluginInterface
*
* @var CMSApplicationInterface
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
private $application;

Expand Down Expand Up @@ -195,7 +195,7 @@ public function loadLanguage($extension = '', $basePath = JPATH_ADMINISTRATOR)
*
* @return string The translated string
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*
* @see sprintf
*/
Expand Down Expand Up @@ -406,7 +406,7 @@ private function parameterImplementsEventInterface(\ReflectionParameter $paramet
*
* @return CMSApplicationInterface|null
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
protected function getApplication(): ?CMSApplicationInterface
{
Expand All @@ -420,7 +420,7 @@ protected function getApplication(): ?CMSApplicationInterface
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
public function setApplication(CMSApplicationInterface $application): void
{
Expand Down
6 changes: 3 additions & 3 deletions libraries/src/Version.php
Expand Up @@ -63,7 +63,7 @@ final class Version
* @var string
* @since 3.8.0
*/
const EXTRA_VERSION = 'beta2-dev';
const EXTRA_VERSION = 'dev';

/**
* Development status.
Expand All @@ -87,15 +87,15 @@ final class Version
* @var string
* @since 3.5
*/
const RELDATE = '7-June-2022';
const RELDATE = '22-June-2022';

/**
* Release time.
*
* @var string
* @since 3.5
*/
const RELTIME = '16:53';
const RELTIME = '17:00';

/**
* Release timezone.
Expand Down
2 changes: 1 addition & 1 deletion plugins/behaviour/taggable/services/provider.php
Expand Up @@ -25,7 +25,7 @@
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
public function register(Container $container)
{
Expand Down
2 changes: 1 addition & 1 deletion plugins/behaviour/taggable/src/Extension/Taggable.php
Expand Up @@ -40,7 +40,7 @@ final class Taggable extends CMSPlugin implements SubscriberInterface
*
* @return array
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
public static function getSubscribedEvents(): array
{
Expand Down
2 changes: 1 addition & 1 deletion plugins/behaviour/versionable/services/provider.php
Expand Up @@ -28,7 +28,7 @@
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 4.2.0
*/
public function register(Container $container)
{
Expand Down

0 comments on commit 4fa4485

Please sign in to comment.