You are here

public static function SupportTicketRevisionDeleteForm::create in Support Ticketing System 8

Instantiates a new instance of this class.

This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton.

Parameters

\Symfony\Component\DependencyInjection\ContainerInterface $container: The service container this instance should use.

Overrides FormBase::create

File

modules/support_ticket/src/Form/SupportTicketRevisionDeleteForm.php, line 70
Contains \Drupal\support_ticket\Form\SupportTicketRevisionDeleteForm.

Class

SupportTicketRevisionDeleteForm
Provides a form for reverting a support ticket revision.

Namespace

Drupal\support_ticket\Form

Code

public static function create(ContainerInterface $container) {
  $entity_manager = $container
    ->get('entity.manager');
  return new static($entity_manager
    ->getStorage('support_ticket'), $entity_manager
    ->getStorage('support_ticket_type'), $container
    ->get('database'));
}