Skip to content

Commit

Permalink
Alpha order imports in libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
laoneo committed Oct 16, 2018
1 parent 5bd9120 commit 992cd10
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 16 deletions.
1 change: 0 additions & 1 deletion libraries/src/Dispatcher/LegacyComponentDispatcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

use Joomla\CMS\Application\CMSApplication;
use Joomla\CMS\Language\Text;
use Joomla\CMS\MVC\Factory\MVCFactoryFactory;

/**
* Base class for a legacy Joomla Dispatcher
Expand Down
2 changes: 0 additions & 2 deletions libraries/src/Environment/Browser.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

defined('JPATH_PLATFORM') or die;

use Joomla\CMS\Log\Log;

/**
* Browser class, provides capability information about the current web client.
*
Expand Down
10 changes: 5 additions & 5 deletions libraries/src/Extension/LegacyComponent.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@
defined('JPATH_PLATFORM') or die;

use Joomla\CMS\Application\CMSApplicationInterface;
use Joomla\CMS\Categories\CategoryInterface;
use Joomla\CMS\Categories\CategoryServiceInterface;
use Joomla\CMS\Categories\CategoryServiceTrait;
use Joomla\CMS\Categories\CategoryInterface;
use Joomla\CMS\Categories\SectionNotFoundException;
use Joomla\CMS\Component\Router\RouterInterface;
use Joomla\CMS\Component\Router\RouterLegacy;
use Joomla\CMS\Component\Router\RouterServiceInterface;
use Joomla\CMS\Dispatcher\DispatcherInterface;
use Joomla\CMS\Dispatcher\LegacyComponentDispatcher;
use Joomla\CMS\Fields\FieldsServiceInterface;
use Joomla\CMS\Filesystem\Path;
use Joomla\CMS\Menu\AbstractMenu;
use Joomla\CMS\MVC\Factory\LegacyFactory;
use Joomla\CMS\MVC\Factory\MVCFactory;
use Joomla\CMS\MVC\Factory\MVCFactoryInterface;
use Joomla\CMS\MVC\Factory\MVCFactoryServiceInterface;
use Joomla\CMS\Component\Router\RouterServiceInterface;
use Joomla\CMS\Menu\AbstractMenu;
use Joomla\CMS\Component\Router\RouterInterface;
use Joomla\CMS\Component\Router\RouterLegacy;

/**
* Access to component specific services.
Expand Down
4 changes: 2 additions & 2 deletions libraries/src/Extension/Service/Provider/RouterFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
defined('JPATH_PLATFORM') or die;

use Joomla\CMS\Categories\CategoryFactoryInterface;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
use Joomla\CMS\Component\Router\RouterFactoryInterface;
use Joomla\Database\DatabaseInterface;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;

/**
* Service provider for the service router factory.
Expand Down
2 changes: 1 addition & 1 deletion libraries/src/Form/Field/TransitionField.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@

use Joomla\CMS\Factory;
use Joomla\CMS\Form\FormHelper;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Workflow\Workflow;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\Utilities\ArrayHelper;

FormHelper::loadFieldClass('list');
Expand Down
1 change: 0 additions & 1 deletion libraries/src/Form/Field/WorkflowstageField.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
defined('_JEXEC') or die;

use Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\GroupedlistField;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;

Expand Down
1 change: 0 additions & 1 deletion libraries/src/Form/Form.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
use Joomla\CMS\Filesystem\Path;
use Joomla\CMS\Filter\InputFilter;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Log\Log;
use Joomla\CMS\Object\CMSObject;
use Joomla\CMS\String\PunycodeHelper;
use Joomla\CMS\Uri\Uri;
Expand Down
1 change: 0 additions & 1 deletion libraries/src/Language/Language.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
defined('JPATH_PLATFORM') or die;

use Joomla\CMS\Factory;
use Joomla\CMS\Log\Log;
use Joomla\String\StringHelper;

/**
Expand Down
1 change: 0 additions & 1 deletion libraries/src/Language/Multilanguage.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
defined('JPATH_PLATFORM') or die;

use Joomla\CMS\Factory;
use Joomla\CMS\Log\Log;

/**
* Utitlity class for multilang
Expand Down
2 changes: 1 addition & 1 deletion libraries/src/Router/SiteRouter.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
use Joomla\CMS\Application\SiteApplication;
use Joomla\CMS\Component\Router\RouterInterface;
use Joomla\CMS\Component\Router\RouterLegacy;
use Joomla\CMS\Component\Router\RouterServiceInterface;
use Joomla\CMS\Factory;
use Joomla\CMS\Menu\AbstractMenu;
use Joomla\CMS\Uri\Uri;
use Joomla\String\StringHelper;
use Joomla\CMS\Component\Router\RouterServiceInterface;

/**
* Class to create and parse routes for the site application
Expand Down

0 comments on commit 992cd10

Please sign in to comment.