1 | <?php |
||
9 | class CircuitBreakerServiceProvider extends ServiceProvider |
||
10 | { |
||
11 | public $bindings = [ |
||
12 | CircuitBreakerStoreInterface::class => CacheCircuitBreakerStore::class |
||
13 | ]; |
||
14 | |||
15 | /** |
||
16 | * Perform post-registration booting of services. |
||
17 | * |
||
18 | * @return void |
||
19 | */ |
||
20 | public function boot() |
||
26 | } |
||
27 |