Current path: home/webdevt/prestashop17/vendor/prestashop/circuit-breaker/src/Contract/
?? Go up: /home/webdevt/prestashop17/vendor/prestashop/circuit-breaker/src
<?php
namespace PrestaShop\CircuitBreaker\Contract;
/**
* The System define the places available
* for the Circuit Breaker and the initial Place.
*/
interface SystemInterface
{
/**
* @return PlaceInterface[] the list of places of the system
*/
public function getPlaces();
/**
* @return PlaceInterface the initial place of the system
*/
public function getInitialPlace();
}