You are here

public function Currency::setEntityManager in Currency 8.3

Sets the entity manager.

Parameters

\Drupal\Core\Entity\EntityManagerInterface $entity_manager:

Return value

$this

File

src/Entity/Currency.php, line 330

Class

Currency
Defines a currency entity class.

Namespace

Drupal\currency\Entity

Code

public function setEntityManager(EntityManagerInterface $entity_manager) {
  $this->entityManager = $entity_manager;
  return $this;
}