12345678910111213141516171819202122232425262728 |
- <?php
- namespace Symfony\Component\HttpFoundation\RequestMatcher;
- use Symfony\Component\HttpFoundation\Request;
- use Symfony\Component\HttpFoundation\RequestMatcherInterface;
- class IsJsonRequestMatcher implements RequestMatcherInterface
- {
- public function matches(Request $request): bool
- {
- return json_validate($request->getContent());
- }
- }
|