Skip to content

Commit

Permalink
fix error for apcu storage
Browse files Browse the repository at this point in the history
  • Loading branch information
yupmin committed Jun 21, 2019
1 parent 17f105e commit a11bb05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function register()
$this->app->alias(Phystrix\CommandFactory::class, 'phystrix.command-factory');
$this->app->alias(Phystrix\MetricsEventStream\MetricsServer::class, 'phystrix.stream');
$this->app->alias(Phystrix\ArrayStateStorage::class, 'phystrix.state-storage.array');
$this->app->alias(Phystrix\ApcStateStorage::class, 'phystrix.state-storage.apcu');
$this->app->alias(Phystrix\ApcuStateStorage::class, 'phystrix.state-storage.apcu');
$this->app->alias(Phystrix\MetricsEventStream\ApcuMetricsPoller::class, 'phystrix.metrics-event-stream.apcu');
}

Expand Down

0 comments on commit a11bb05

Please sign in to comment.