Skip to content

Commit

Permalink
Address some old linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismacdonaldw committed Apr 19, 2024
1 parent 08beabc commit 6a2edb6
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions src/Plugin/migrate/process/Parse.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

namespace Drupal\foxml\Plugin\migrate\process;

use Drupal\Core\Plugin\ContainerFactoryPluginInterface;

use Drupal\foxml\Utility\Fedora3\FoxmlParser;
use Drupal\foxml\Utility\Fedora3\Element\DigitalObject;
use Drupal\migrate\ProcessPluginBase;
use Drupal\migrate\MigrateExecutableInterface;
use Drupal\migrate\Row;
use Drupal\migrate\MigrateException;
use Drupal\foxml\Utility\Fedora3\FoxmlParser;
use Drupal\foxml\Utility\Fedora3\Element\DigitalObject;

use Drupal\Core\Plugin\ContainerFactoryPluginInterface;

use Symfony\Component\DependencyInjection\ContainerInterface;

Expand Down
6 changes: 3 additions & 3 deletions src/Plugin/migrate/source/Foxml.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

namespace Drupal\foxml\Plugin\migrate\source;

use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;

use Drupal\foxml\Utility\Fedora3\ObjectLowLevelAdapterInterface;
use Drupal\migrate\Plugin\migrate\source\SourcePluginBase;
use Drupal\migrate\Plugin\MigrationInterface;

use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;

use Symfony\Component\DependencyInjection\ContainerInterface;

/**
Expand Down
6 changes: 3 additions & 3 deletions src/StreamWrapper/Foxml.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

namespace Drupal\foxml\StreamWrapper;

use Drupal\foxml\Utility\Fedora3\DatastreamLowLevelAdapterInterface;
use Drupal\foxml\Utility\Fedora3\ObjectLowLevelAdapterInterface;

use Drupal\Core\File\FileSystem;
use Drupal\Core\StreamWrapper\LocalReadOnlyStream;
use Drupal\Core\Url;

use Drupal\foxml\Utility\Fedora3\DatastreamLowLevelAdapterInterface;
use Drupal\foxml\Utility\Fedora3\ObjectLowLevelAdapterInterface;

/**
* FOXML stream wrapper.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Drupal\foxml\Utility\Fedora3\Element;

use Drupal\foxml\Utility\Fedora3\AbstractParser;
use Drupal\foxml\StreamWrapper\Substream;
use Drupal\foxml\Utility\Fedora3\AbstractParser;

/**
* Abstract element handler for inline content.
Expand Down
2 changes: 1 addition & 1 deletion src/Utility/Fedora3/FoxmlParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Drupal\foxml\Utility\Fedora3;

use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Lock\LockBackendInterface;
use Drupal\foxml\Utility\Fedora3\Element\DigitalObject;
use Drupal\Core\Cache\CacheBackendInterface;

/**
* Foxml parser.
Expand Down

0 comments on commit 6a2edb6

Please sign in to comment.