diff --git a/core/lib/Drupal/Core/KeyValueStore/DatabaseStorageExpirable.php b/core/lib/Drupal/Core/KeyValueStore/DatabaseStorageExpirable.php
index 9f3b428..34a95a4 100644
--- a/core/lib/Drupal/Core/KeyValueStore/DatabaseStorageExpirable.php
+++ b/core/lib/Drupal/Core/KeyValueStore/DatabaseStorageExpirable.php
@@ -71,7 +71,7 @@ public function getAll() {
   /**
    * {@inheritdoc}
    */
-  function setWithExpire($key, $value, $expire) {
+  function setWithExpire($key, $value, $time_to_live) {
     $this->connection->merge($this->table)
       ->keys(array(
         'name' => $key,
@@ -79,7 +79,7 @@ function setWithExpire($key, $value, $expire) {
       ))
       ->fields(array(
         'value' => $this->serializer->encode($value),
-        'expire' => REQUEST_TIME + $expire,
+        'expire' => REQUEST_TIME + $time_to_live,
       ))
       ->execute();
   }
@@ -87,13 +87,13 @@ function setWithExpire($key, $value, $expire) {
   /**
    * {@inheritdoc}
    */
-  function setWithExpireIfNotExists($key, $value, $expire) {
+  function setWithExpireIfNotExists($key, $value, $time_to_live) {
     $result = $this->connection->merge($this->table)
       ->insertFields(array(
         'collection' => $this->collection,
         'name' => $key,
         'value' => $this->serializer->encode($value),
-        'expire' => REQUEST_TIME + $expire,
+        'expire' => REQUEST_TIME + $time_to_live,
       ))
       ->condition('collection', $this->collection)
       ->condition('name', $key)
@@ -104,9 +104,9 @@ function setWithExpireIfNotExists($key, $value, $expire) {
   /**
    * {@inheritdoc}
    */
-  function setMultipleWithExpire(array $data, $expire) {
+  function setMultipleWithExpire(array $data, $time_to_live) {
     foreach ($data as $key => $value) {
-      $this->setWithExpire($key, $value, $expire);
+      $this->setWithExpire($key, $value, $time_to_live);
     }
   }
 
diff --git a/core/lib/Drupal/Core/KeyValueStore/KeyValueStoreExpirableInterface.php b/core/lib/Drupal/Core/KeyValueStore/KeyValueStoreExpirableInterface.php
index 995a9a8..b3dff36 100644
--- a/core/lib/Drupal/Core/KeyValueStore/KeyValueStoreExpirableInterface.php
+++ b/core/lib/Drupal/Core/KeyValueStore/KeyValueStoreExpirableInterface.php
@@ -14,10 +14,10 @@
    *   The key of the data to store.
    * @param mixed $value
    *   The data to store.
-   * @param int $expire
+   * @param int $time_to_live
    *   The time to live for items, in seconds.
    */
-  public function setWithExpire($key, $value, $expire);
+  public function setWithExpire($key, $value, $time_to_live);
 
   /**
    * Sets a value for a given key with a time to live if it does not yet exist.
@@ -26,22 +26,22 @@ public function setWithExpire($key, $value, $expire);
    *   The key of the data to store.
    * @param mixed $value
    *   The data to store.
-   * @param int $expire
+   * @param int $time_to_live
    *   The time to live for items, in seconds.
    *
    * @return bool
    *   TRUE if the data was set, or FALSE if it already existed.
    */
-  public function setWithExpireIfNotExists($key, $value, $expire);
+  public function setWithExpireIfNotExists($key, $value, $time_to_live);
 
   /**
    * Saves an array of values with a time to live.
    *
    * @param array $data
    *   An array of data to store.
-   * @param int $expire
+   * @param int $time_to_live
    *   The time to live for items, in seconds.
    */
-  public function setMultipleWithExpire(array $data, $expire);
+  public function setMultipleWithExpire(array $data, $time_to_live);
 
 }
diff --git a/core/lib/Drupal/Core/KeyValueStore/NullStorageExpirable.php b/core/lib/Drupal/Core/KeyValueStore/NullStorageExpirable.php
index 8e7ab53..9529b94 100644
--- a/core/lib/Drupal/Core/KeyValueStore/NullStorageExpirable.php
+++ b/core/lib/Drupal/Core/KeyValueStore/NullStorageExpirable.php
@@ -102,7 +102,7 @@ public function getCollectionName() {
   /**
    * {@inheritdoc}
    */
-  public function setMultipleWithExpire(array $data, $expire) { }
+  public function setMultipleWithExpire(array $data, $time_to_live) { }
 
   /**
    * {@inheritdoc}
