Update to Drupal 8.1.2. For more information, see https://www.drupal.org/project/drupal/releases/8.1.2
This commit is contained in:
parent
9eae24d844
commit
28556d630e
1322 changed files with 6699 additions and 2064 deletions
|
@ -60,4 +60,5 @@ class Batch extends DatabaseQueue {
|
|||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -46,4 +46,5 @@ class BatchMemory extends Memory {
|
|||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -103,4 +103,5 @@ class Memory implements QueueInterface {
|
|||
$this->queue = array();
|
||||
$this->idSequence = 0;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -38,4 +38,5 @@ class QueueDatabaseFactory {
|
|||
public function get($name) {
|
||||
return new DatabaseQueue($name, $this->connection);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -63,4 +63,5 @@ class QueueFactory implements ContainerAwareInterface {
|
|||
}
|
||||
return $this->queues[$name];
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -106,4 +106,5 @@ interface QueueInterface {
|
|||
* Deletes a queue and every item in the queue.
|
||||
*/
|
||||
public function deleteQueue();
|
||||
|
||||
}
|
||||
|
|
Reference in a new issue