Issue #2273825 by rpayanm, dawehner: Fixed UserStorageInterface should extend EntityStorageInterface.
parent
7652f683f3
commit
e3964f9a2c
|
@ -7,12 +7,13 @@
|
||||||
|
|
||||||
namespace Drupal\user;
|
namespace Drupal\user;
|
||||||
|
|
||||||
|
use Drupal\Core\Entity\EntityStorageInterface;
|
||||||
use Drupal\Core\Session\AccountInterface;
|
use Drupal\Core\Session\AccountInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines an interface for user entity storage classes.
|
* Defines an interface for user entity storage classes.
|
||||||
*/
|
*/
|
||||||
interface UserStorageInterface {
|
interface UserStorageInterface extends EntityStorageInterface{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add any roles from the storage to the user.
|
* Add any roles from the storage to the user.
|
||||||
|
|
Loading…
Reference in New Issue