You are here

public function Store::getEmail in Commerce Core 8.2

Gets the store email.

Return value

string The store email

Overrides StoreInterface::getEmail

File

modules/store/src/Entity/Store.php, line 105

Class

Store
Defines the store entity class.

Namespace

Drupal\commerce_store\Entity

Code

public function getEmail() {
  return $this
    ->get('mail')->value;
}