Skip to content

Commit

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

defined('_JEXEC') or die;

use Joomla\CMS\Event as CmsEvent;
use Joomla\CMS\Helper\TagsHelper;
use Joomla\CMS\Plugin\CMSPlugin;
use Joomla\CMS\Table\TableInterface;
use Joomla\Event\DispatcherInterface;
use Joomla\CMS\Event as CmsEvent;

/**
* Implements the Taggable behaviour which allows extensions to automatically support tags for their content items.
Expand Down
6 changes: 3 additions & 3 deletions plugins/behaviour/versionable/versionable.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@

defined('_JEXEC') or die;

use Joomla\CMS\Component\ComponentHelper;
use Joomla\CMS\Event as CmsEvent;
use Joomla\CMS\Helper\ContentHistoryHelper;
use Joomla\CMS\Plugin\CMSPlugin;
use Joomla\CMS\Table\TableInterface;
use Joomla\Event\DispatcherInterface;
use Joomla\CMS\Component\ComponentHelper;
use Joomla\CMS\Helper\ContentHistoryHelper;
use Joomla\CMS\Event as CmsEvent;

/**
* Implements the Taggable behaviour which allows extensions to automatically support tags for their content items.
Expand Down

0 comments on commit a586e26

Please sign in to comment.