Skip to content

Commit 9fd020d

Browse files
committed
chore: adjust code format
1 parent 70dfd1b commit 9fd020d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/http/src/RouteDependency.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ public function getAfterResolvingCallbacks(object $object): array
106106
public function getMethodParameters(string $controller, string $action, array $arguments): array
107107
{
108108
$signature = "{$controller}::{$action}";
109+
109110
return $this->getDependencies(
110111
$this->resolvedDefinitions[$signature] ?? $this->resolvedDefinitions[$signature] = $this->methodDefinitionCollector->getParameters($controller, $action),
111112
"{$controller}::{$action}",
@@ -121,6 +122,7 @@ public function getMethodParameters(string $controller, string $action, array $a
121122
public function getClosureParameters(Closure $closure, array $arguments): array
122123
{
123124
$signature = spl_object_hash($closure);
125+
124126
return $this->getDependencies(
125127
$this->resolvedDefinitions[$signature] ?? $this->resolvedDefinitions[$signature] = $this->closureDefinitionCollector->getParameters($closure),
126128
'Closure',

0 commit comments

Comments
 (0)