Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion plugins/system/cache/services/provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
use Joomla\Event\DispatcherInterface;
use Joomla\Plugin\System\Cache\Extension\Cache;

return new class implements ServiceProviderInterface {
return new class implements ServiceProviderInterface
{
/**
* Registers the service provider with a DI container.
*
Expand Down
9 changes: 4 additions & 5 deletions plugins/system/cache/src/Extension/Cache.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<?php

/**
* @package Joomla.Plugin
* @subpackage System.cache
* @package Joomla.Plugin
* @subpackage System.cache
*
* @copyright (C) 2022 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
* @copyright (C) 2022 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

namespace Joomla\Plugin\System\Cache\Extension;
Expand Down