NumberFormatDefinitionEvent.php in Commerce Core 8.2
Namespace
Drupal\commerce_price\EventFile
modules/price/src/Event/NumberFormatDefinitionEvent.phpView source
<?php
namespace Drupal\commerce_price\Event;
use Drupal\commerce\EventBase;
/**
* Defines the number format definition event.
*
* @see \Drupal\commerce_price\Event\PriceEvents
*/
class NumberFormatDefinitionEvent extends EventBase {
/**
* The number format definition.
*
* @var array
*/
protected $definition;
/**
* Constructs a new NumberFormatDefinitionEvent.
*
* @param array $definition
* The number format definition.
*/
public function __construct(array $definition) {
$this->definition = $definition;
}
/**
* Gets the number format definition.
*
* @return array
* The number format definition.
*/
public function getDefinition() {
return $this->definition;
}
/**
* Sets the number format definition.
*
* @param array $definition
* The number format definition.
*
* @return $this
*/
public function setDefinition(array $definition) {
$this->definition = $definition;
return $this;
}
}
Classes
Name | Description |
---|---|
NumberFormatDefinitionEvent | Defines the number format definition event. |