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;
/**
* Ease the creation of the Circuit Breaker.
*/
interface FactoryInterface
{
/**
* @param FactorySettingsInterface $settings the settings for the Place
*
* @return CircuitBreakerInterface
*/
public function create(FactorySettingsInterface $settings);
}