Skip to content

Commit

Permalink
remove unnecessary variable (#285)
Browse files Browse the repository at this point in the history
  • Loading branch information
alirezadp10 authored Jan 19, 2024
1 parent 389dcbb commit b111f88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PulseServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ protected function registerIngest(): void
*/
public function boot(): void
{
if ($enabled = $this->app->make('config')->get('pulse.enabled')) {
if ($this->app->make('config')->get('pulse.enabled')) {
$this->app->make(Pulse::class)->register($this->app->make('config')->get('pulse.recorders'));
$this->listenForEvents();
} else {
Expand Down

0 comments on commit b111f88

Please sign in to comment.