Skip to content

Commit

Permalink
Alpha order imports in authentication plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
laoneo committed Oct 16, 2018
1 parent be25bac commit 17e3d4c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions plugins/authentication/cookie/cookie.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@

defined('_JEXEC') or die;

use Joomla\CMS\Authentication\Authentication;
use Joomla\CMS\Filter\InputFilter;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Log\Log;
use Joomla\CMS\Plugin\CMSPlugin;
use Joomla\CMS\User\User;
use Joomla\CMS\Language\Text;
use Joomla\CMS\User\UserHelper;
use Joomla\CMS\Plugin\CMSPlugin;
use Joomla\CMS\Filter\InputFilter;
use Joomla\CMS\Authentication\Authentication;

/**
* Joomla Authentication plugin
Expand Down
8 changes: 4 additions & 4 deletions plugins/authentication/joomla/joomla.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@

defined('_JEXEC') or die;

use Joomla\CMS\Authentication\Authentication;
use Joomla\CMS\Factory;
use Joomla\CMS\User\User;
use Joomla\CMS\Helper\AuthenticationHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\User\UserHelper;
use Joomla\CMS\Plugin\CMSPlugin;
use Joomla\CMS\Plugin\PluginHelper;
use Joomla\CMS\Helper\AuthenticationHelper;
use Joomla\CMS\Authentication\Authentication;
use Joomla\CMS\User\User;
use Joomla\CMS\User\UserHelper;

/**
* Joomla Authentication plugin
Expand Down
2 changes: 1 addition & 1 deletion plugins/authentication/ldap/ldap.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

defined('_JEXEC') or die;

use Joomla\CMS\Authentication\Authentication;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Plugin\CMSPlugin;
use Joomla\CMS\Authentication\Authentication;
use Symfony\Component\Ldap\Entry;
use Symfony\Component\Ldap\Exception\ConnectionException;
use Symfony\Component\Ldap\Exception\LdapException;
Expand Down

0 comments on commit 17e3d4c

Please sign in to comment.