Skip to content

Commit

Permalink
CS fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Sep 2, 2022
1 parent 89f1450 commit 9f35d3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GenericRuntime.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public function getRunner(?object $application): RunnerInterface
}

if (!$application instanceof \Closure) {
if ($runtime = $this->resolveRuntime(\get_class($application))) {
if ($runtime = $this->resolveRuntime($application::class)) {
return $runtime->getRunner($application);
}

Expand Down

0 comments on commit 9f35d3f

Please sign in to comment.