X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fmodules%2Fcontrib%2Fpathauto%2Fsrc%2FEventSubscriber%2FPathautoSettingsCacheTag.php;fp=web%2Fmodules%2Fcontrib%2Fpathauto%2Fsrc%2FEventSubscriber%2FPathautoSettingsCacheTag.php;h=698d76b75690f9e30af848670b58baace6b70265;hp=371fe2e2fc8b7367d377cdcf9492fb7ce22f00bd;hb=059867c3f96750652c80f39e44c442a58c2549ee;hpb=f8fc16ae6b862bef59baaad5d051dd37b7ff11b2 diff --git a/web/modules/contrib/pathauto/src/EventSubscriber/PathautoSettingsCacheTag.php b/web/modules/contrib/pathauto/src/EventSubscriber/PathautoSettingsCacheTag.php index 371fe2e2f..698d76b75 100644 --- a/web/modules/contrib/pathauto/src/EventSubscriber/PathautoSettingsCacheTag.php +++ b/web/modules/contrib/pathauto/src/EventSubscriber/PathautoSettingsCacheTag.php @@ -13,11 +13,25 @@ use Drupal\pathauto\AliasTypeManager; */ class PathautoSettingsCacheTag implements EventSubscriberInterface { + /** + * @var \Drupal\Core\Entity\EntityFieldManagerInterface + */ protected $entityFieldManager; + + /** + * The alias type manager. + * + * @var \Drupal\pathauto\AliasTypeManager + */ protected $aliasTypeManager; /** * Constructs a PathautoSettingsCacheTag object. + * + * @param \Drupal\Core\Entity\EntityFieldManagerInterface $entity_field_manager + * The entity field manager. + * @param \Drupal\pathauto\AliasTypeManager $alias_type_manager + * The alias type manager. */ public function __construct(EntityFieldManagerInterface $entity_field_manager, AliasTypeManager $alias_type_manager) { $this->entityFieldManager = $entity_field_manager;