Completed
Pull Request — master (#157)
by
unknown
01:50
created
src/Drupal/Driver/Plugin/DriverEntityPluginDrupal8Base.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,11 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Drupal\Driver\Plugin;
4 4
 
5
-use Drupal\Component\Plugin\PluginBase;
6 5
 use Drupal\Driver\Exception\Exception;
7 6
 use Drupal\Driver\Wrapper\Field\DriverFieldInterface;
8
-use Symfony\Component\DependencyInjection\ContainerInterface;
9
-use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
10 7
 use Drupal\Core\Entity\EntityInterface;
11 8
 use Drupal\Driver\Wrapper\Field\DriverFieldDrupal8;
12 9
 use Drupal\Driver\Wrapper\Entity\DriverEntityInterface;
Please login to merge, or discard this patch.
tests/Drupal/Tests/Driver/DriverPluginManagersTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Drupal\Tests\Driver;
4 4
 
5
-use Drupal\Driver\Wrapper\Field\DriverFieldDrupal8;
6
-
7 5
 /**
8 6
  * Tests the Driver's plugin managers.
9 7
  */
Please login to merge, or discard this patch.
tests/Drupal/Tests/Driver/Kernel/Drupal8/Entity/TaxonomyTermTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Drupal\Driver\Wrapper\Entity\DriverEntityDrupal8;
6 6
 use Drupal\Tests\Driver\Kernel\Drupal8\Entity\DriverEntityKernelTestBase;
7 7
 use Drupal\taxonomy\Entity\Vocabulary;
8
-use Drupal\taxonomy\Entity\Term;
9 8
 
10 9
 /**
11 10
  * Tests the driver's handling of term entities.
Please login to merge, or discard this patch.
tests/Drupal/Tests/Driver/Kernel/Drupal8/Entity/UserTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Drupal\Tests\Driver\Kernel\Drupal8\Entity;
4 4
 
5 5
 use Drupal\Tests\Driver\Kernel\Drupal8\Entity\DriverEntityKernelTestBase;
6
-use Drupal\user\Entity\User;
7 6
 use Drupal\user\Entity\Role;
8 7
 use Drupal\Driver\Wrapper\Entity\DriverEntityDrupal8;
9 8
 
Please login to merge, or discard this patch.
tests/Drupal/Tests/Driver/Kernel/Drupal8/Field/DriverFieldTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Drupal\Tests\Driver\Kernel\Drupal8\Field\DriverFieldKernelTestBase;
6 6
 use Drupal\Driver\Plugin\DriverFieldPluginManager;
7
-use Drupal\KernelTests\KernelTestBase;
8 7
 use Drupal\Driver\Wrapper\Field\DriverFieldDrupal8;
9 8
 
10 9
 /** Tests the field plugin base class.
Please login to merge, or discard this patch.
src/Drupal/Driver/DrupalDriver.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Drupal\Driver;
4 4
 
5 5
 use Drupal\Driver\Exception\BootstrapException;
6
-
7 6
 use Behat\Behat\Tester\Exception\PendingException;
8 7
 
9 8
 /**
Please login to merge, or discard this patch.
src/Drupal/Driver/Cores/Drupal8.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -9,13 +9,9 @@
 block discarded – undo
9 9
 use Drupal\field\Entity\FieldStorageConfig;
10 10
 use Drupal\language\Entity\ConfigurableLanguage;
11 11
 use Drupal\mailsystem\MailsystemManager;
12
-use Drupal\node\Entity\Node;
13 12
 use Drupal\node\NodeInterface;
14 13
 use Drupal\Core\Entity\EntityInterface;
15
-use Drupal\taxonomy\Entity\Term;
16
-use Drupal\taxonomy\TermInterface;
17 14
 use Symfony\Component\HttpFoundation\Request;
18
-use Drupal\Driver\Plugin\DriverFieldPluginManager;
19 15
 use Drupal\Driver\Wrapper\Field\DriverFieldDrupal8;
20 16
 use Drupal\Driver\Wrapper\Entity\DriverEntityDrupal8;
21 17
 
Please login to merge, or discard this patch.
src/Drupal/Driver/Wrapper/Entity/DriverEntityBase.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use Drupal\Driver\Plugin\DriverEntityPluginManager;
8 8
 use Drupal\Driver\Plugin\DriverPluginManagerInterface;
9 9
 use Drupal\Driver\Wrapper\Field\DriverFieldInterface;
10
-use Drupal\Driver\Wrapper\Field\DriverFieldDrupal8;
11 10
 use Drupal\Driver\Plugin\DriverNameMatcher;
12 11
 
13 12
 /**
Please login to merge, or discard this patch.
src/Drupal/Driver/Wrapper/Entity/DriverEntityDrupal8.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Drupal\Driver\Wrapper\Entity;
4 4
 
5
-use Drupal\Driver\Wrapper\Field\DriverFieldDrupal8;
6 5
 use Drupal\Driver\Plugin\DriverPluginManagerInterface;
7 6
 use Drupal\Driver\Plugin\DriverNameMatcher;
8 7
 
Please login to merge, or discard this patch.