commerce-8.x-2.8/modules/store/src/CurrentStoreInterface.php
modules/store/src/CurrentStoreInterface.php
<?php
namespace Drupal\commerce_store;
/**
* Holds a reference to the active store, resolved on demand.
*/
interface CurrentStoreInterface {
/**
* Gets the active store for the current request.
*
* @return \Drupal\commerce_store\Entity\StoreInterface
* The active store.
*/
public function getStore();
}
