protected function TestPerComponentEntityFormDisplay::getEntity in Drupal 9
Same name and namespace in other branches
- 8 core/modules/migrate/tests/src/Unit/destination/PerComponentEntityFormDisplayTest.php \Drupal\Tests\migrate\Unit\destination\TestPerComponentEntityFormDisplay::getEntity()
- 10 core/modules/migrate/tests/src/Unit/destination/PerComponentEntityFormDisplayTest.php \Drupal\Tests\migrate\Unit\destination\TestPerComponentEntityFormDisplay::getEntity()
Gets the entity.
Parameters
string $entity_type: The entity type to retrieve.
string $bundle: The entity bundle.
string $mode: The display mode.
Return value
\Drupal\Core\Entity\Display\EntityDisplayInterface The entity display object.
Overrides PerComponentEntityFormDisplay::getEntity
File
- core/
modules/ migrate/ tests/ src/ Unit/ destination/ PerComponentEntityFormDisplayTest.php, line 61 - Contains \Drupal\Tests\migrate\Unit\destination\PerComponentEntityFormDisplayTest.
Class
Namespace
Drupal\Tests\migrate\Unit\destinationCode
protected function getEntity($entity_type, $bundle, $form_mode) {
$this->testValues = func_get_args();
return $this->entity;
}