Skip to content

Commit

Permalink
fix (#41981)
Browse files Browse the repository at this point in the history
  • Loading branch information
Denitz committed Mar 2, 2024
1 parent a34f938 commit 477ff5b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
5 changes: 1 addition & 4 deletions libraries/src/Application/BaseApplication.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@

use Joomla\Application\AbstractApplication;
use Joomla\CMS\Input\Input;
use Joomla\Event\DispatcherAwareInterface;
use Joomla\Event\DispatcherAwareTrait;
use Joomla\Registry\Registry;

// phpcs:disable PSR1.Files.SideEffects
Expand All @@ -30,9 +28,8 @@
* Application classes should directly be based on \Joomla\Application\AbstractApplication
* don't use this class anymore
*/
abstract class BaseApplication extends AbstractApplication implements DispatcherAwareInterface
abstract class BaseApplication extends AbstractApplication
{
use DispatcherAwareTrait;
use EventAware;
use IdentityAware;

Expand Down
5 changes: 1 addition & 4 deletions libraries/src/Application/CliApplication.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@
use Joomla\CMS\Language\Language;
use Joomla\DI\Container;
use Joomla\DI\ContainerAwareTrait;
use Joomla\Event\DispatcherAwareInterface;
use Joomla\Event\DispatcherAwareTrait;
use Joomla\Event\DispatcherInterface;
use Joomla\Input\Input;
use Joomla\Registry\Registry;
Expand All @@ -39,9 +37,8 @@
* @deprecated 4.0 will be removed in 6.0
* Use the ConsoleApplication instead
*/
abstract class CliApplication extends AbstractApplication implements DispatcherAwareInterface, CMSApplicationInterface
abstract class CliApplication extends AbstractApplication implements CMSApplicationInterface
{
use DispatcherAwareTrait;
use EventAware;
use IdentityAware;
use ContainerAwareTrait;
Expand Down
5 changes: 1 addition & 4 deletions libraries/src/Application/ConsoleApplication.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
use Joomla\Database\DatabaseAwareTrait;
use Joomla\DI\Container;
use Joomla\DI\ContainerAwareTrait;
use Joomla\Event\DispatcherAwareInterface;
use Joomla\Event\DispatcherAwareTrait;
use Joomla\Event\DispatcherInterface;
use Joomla\Input\Input;
use Joomla\Registry\Registry;
Expand All @@ -42,9 +40,8 @@
*
* @since 4.0.0
*/
class ConsoleApplication extends Application implements DispatcherAwareInterface, CMSApplicationInterface
class ConsoleApplication extends Application implements CMSApplicationInterface
{
use DispatcherAwareTrait;
use EventAware;
use IdentityAware;
use ContainerAwareTrait;
Expand Down

0 comments on commit 477ff5b

Please sign in to comment.