public function NumberFormatRepository::__construct in Price 8
Same name and namespace in other branches
- 3.x src/Repository/NumberFormatRepository.php \Drupal\price\Repository\NumberFormatRepository::__construct()
- 2.0.x src/Repository/NumberFormatRepository.php \Drupal\price\Repository\NumberFormatRepository::__construct()
- 2.x src/Repository/NumberFormatRepository.php \Drupal\price\Repository\NumberFormatRepository::__construct()
- 3.0.x src/Repository/NumberFormatRepository.php \Drupal\price\Repository\NumberFormatRepository::__construct()
Creates a NumberFormatRepository instance.
Parameters
\Symfony\Component\EventDispatcher\EventDispatcherInterface $event_dispatcher: The event dispatcher.
File
- src/
Repository/ NumberFormatRepository.php, line 32
Class
- NumberFormatRepository
- Defines the number format repository.
Namespace
Drupal\price\RepositoryCode
public function __construct(EventDispatcherInterface $event_dispatcher) {
parent::__construct();
$this->eventDispatcher = $event_dispatcher;
}