Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
33 | 5 | public function indexAction(Request $request, FeedProviderInterface $provider) : Response |
|
34 | 5 | { |
|
35 | 5 | try { |
|
36 | return $this->feedBuilder->getResponse( |
||
37 | 5 | $request->get('format', 'rss'), |
|
38 | 5 | $provider->getFeed($request) |
|
39 | 5 | ); |
|
40 | 5 | } catch (FeedNotFoundException $e) { |
|
41 | 5 | throw new NotFoundHttpException('feed not found'); |
|
42 | } |
||
43 | } |
||
44 | |||
46 |