diff --git a/src/ProxyClass/QueueThrottleCron.php b/src/ProxyClass/QueueThrottleCron.php
index 858021f..c9288de 100644
--- a/src/ProxyClass/QueueThrottleCron.php
+++ b/src/ProxyClass/QueueThrottleCron.php
@@ -7,15 +7,18 @@
 
 namespace Drupal\queue_throttle\ProxyClass {
 
+    use Drupal\Core\CronInterface;
+    use Drupal\Core\DependencyInjection\DependencySerializationTrait;
+    use Symfony\Component\DependencyInjection\ContainerInterface;
     /**
      * Provides a proxy class for \Drupal\queue_throttle\QueueThrottleCron.
      *
      * @see \Drupal\Component\ProxyBuilder
      */
-    class QueueThrottleCron implements \Drupal\Core\CronInterface
+    class QueueThrottleCron implements CronInterface
     {
 
-        use \Drupal\Core\DependencyInjection\DependencySerializationTrait;
+        use DependencySerializationTrait;
 
         /**
          * The id of the original proxied service.
@@ -46,7 +49,7 @@ namespace Drupal\queue_throttle\ProxyClass {
          * @param string $drupal_proxy_original_service_id
          *   The service ID of the original service.
          */
-        public function __construct(\Symfony\Component\DependencyInjection\ContainerInterface $container, $drupal_proxy_original_service_id)
+        public function __construct(ContainerInterface $container, $drupal_proxy_original_service_id)
         {
             $this->container = $container;
             $this->drupalProxyOriginalServiceId = $drupal_proxy_original_service_id;
