We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a70394d commit af75fdbCopy full SHA for af75fdb
example/app.php
@@ -79,7 +79,7 @@ public function setRouter(RouterInterface $router)
79
* add routes
80
*/
81
$router->get('/', function () {
82
- echo 'hello, world';
+ echo '(hello, world)';
83
});
84
85
$router->get('/hello/{name}', function ($args) {
src/MiddlewareStackAwareTrait.php
@@ -98,6 +98,7 @@ public function callStack(ServerRequestInterface $request)
98
99
/**
100
* 不要在外部直接调用,内部调用的
101
+ * @internal
102
* {@inheritDoc}
103
104
public function handle(ServerRequestInterface $request): ResponseInterface
@@ -181,4 +182,4 @@ public function getCallableResolver(): CallableResolverInterface
181
182
{
183
return $this->callableResolver;
184
}
-}
185
+}
0 commit comments