Mercurial > hg > isophonics-drupal-site
comparison core/modules/user/src/UserListBuilder.php @ 18:af1871eacc83
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:33:08 +0100 |
parents | 4c8ae668cc8c |
children |
comparison
equal
deleted
inserted
replaced
17:129ea1e6d783 | 18:af1871eacc83 |
---|---|
54 * {@inheritdoc} | 54 * {@inheritdoc} |
55 */ | 55 */ |
56 public static function createInstance(ContainerInterface $container, EntityTypeInterface $entity_type) { | 56 public static function createInstance(ContainerInterface $container, EntityTypeInterface $entity_type) { |
57 return new static( | 57 return new static( |
58 $entity_type, | 58 $entity_type, |
59 $container->get('entity.manager')->getStorage($entity_type->id()), | 59 $container->get('entity_type.manager')->getStorage($entity_type->id()), |
60 $container->get('date.formatter'), | 60 $container->get('date.formatter'), |
61 $container->get('redirect.destination') | 61 $container->get('redirect.destination') |
62 ); | 62 ); |
63 } | 63 } |
64 | 64 |