Skip to content

Commit

Permalink
Merge pull request #297 from antonioribeiro/analysis-GPa9Vo
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI

[ci skip] [skip ci]
  • Loading branch information
antonioribeiro committed Apr 17, 2023
2 parents 4779617 + db3cc5c commit 6c1a64c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Checkers/Health.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ protected function isHealthy()
) {
return $this->computeHealth($carry, $item);
},
true);
true);

return $healthy;
}
Expand Down
2 changes: 1 addition & 1 deletion src/ServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ private function registerRoutes()
return;
}

collect(($routes = $this->getRoutes()))->each(function ($route) {
collect($routes = $this->getRoutes())->each(function ($route) {
$this->registerRoute($route);
});

Expand Down
4 changes: 2 additions & 2 deletions src/Support/Resource.php
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,8 @@ public function check($action = 'resource', $caller = 'console')
$this->setCurrentAction($action)
->setCurrentCaller($caller)
->targets->each(function (
Target $target
) {
Target $target
) {
$target->check($target);
});

Expand Down

0 comments on commit 6c1a64c

Please sign in to comment.