Skip to content

Commit

Permalink
Update README.
Browse files Browse the repository at this point in the history
  • Loading branch information
aldemeery committed Oct 21, 2024
1 parent 1bd13b3 commit 4e76e92
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -536,9 +536,14 @@ class ProcessRequest implements Invokable, RequestHandlerInterface
}
}

class ServerRequest implements ServerRequestInterface
{
// ...
}

$response = onion([
new AuthenticateRequest(),
new AuthorizeRequest(),
new ProcessRequest(),
])->peel(new ServerRequestInterface());
])->peel(new ServerRequest());
```

0 comments on commit 4e76e92

Please sign in to comment.