Update to Drupal 8.0.0-rc3. For more information, see https://www.drupal.org/node/2608078
This commit is contained in:
parent
6419a031d7
commit
4afb23bbd3
762 changed files with 20080 additions and 6368 deletions
|
@ -32,7 +32,7 @@ class UserData implements UserDataInterface {
|
|||
}
|
||||
|
||||
/**
|
||||
* Implements \Drupal\user\UserDataInterface::get().
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function get($module, $uid = NULL, $name = NULL) {
|
||||
$query = $this->connection->select('users_data', 'ud')
|
||||
|
@ -80,7 +80,7 @@ class UserData implements UserDataInterface {
|
|||
}
|
||||
|
||||
/**
|
||||
* Implements \Drupal\user\UserDataInterface::set().
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function set($module, $uid, $name, $value) {
|
||||
$serialized = 0;
|
||||
|
@ -102,7 +102,7 @@ class UserData implements UserDataInterface {
|
|||
}
|
||||
|
||||
/**
|
||||
* Implements \Drupal\user\UserDataInterface::delete().
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function delete($module = NULL, $uid = NULL, $name = NULL) {
|
||||
$query = $this->connection->delete('users_data');
|
||||
|
|
Reference in a new issue