public function TeamInvitationResendForm::__construct in Apigee Edge 8
TeamInvitationResendForm constructor.
Parameters
\Drupal\Core\Entity\EntityRepositoryInterface $entity_repository: The entity repository service.
\Drupal\Core\Entity\EntityTypeBundleInfoInterface $entity_type_bundle_info: The entity type bundle service.
\Drupal\Component\Datetime\TimeInterface $time: The time service.
\Drupal\apigee_edge_teams\TeamInvitationNotifierInterface $team_invitation_notifier: The team_invitation notifier service.
Overrides ContentEntityForm::__construct
File
- modules/
apigee_edge_teams/ src/ Entity/ Form/ TeamInvitationResendForm.php, line 56
Class
- TeamInvitationResendForm
- Provides the resend form for team_invitation.
Namespace
Drupal\apigee_edge_teams\Entity\FormCode
public function __construct(EntityRepositoryInterface $entity_repository, EntityTypeBundleInfoInterface $entity_type_bundle_info, TimeInterface $time, TeamInvitationNotifierInterface $team_invitation_notifier) {
parent::__construct($entity_repository, $entity_type_bundle_info, $time);
$this->teamInvitationNotifier = $team_invitation_notifier;
}