You are here

public function UnitListBuilder::__construct in Booking and Availability Management Tools for Drupal 8

Constructs a new UnitListBuilder object.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition.

\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage class.

Overrides EntityListBuilder::__construct

File

modules/bat_unit/src/UnitListBuilder.php, line 33
Contains \Drupal\bat_unit\UnitListBuilder.

Class

UnitListBuilder
Defines a class to build a listing of Unit entities.

Namespace

Drupal\bat_unit

Code

public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage) {
  parent::__construct($entity_type, $storage);
}