| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 2 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | 1 | public function __invoke(): Response |
|
| 19 | { |
||
| 20 | $body = <<< 'EOF' |
||
| 21 | <p>You have been redirected here by default. |
||
| 22 | You are most probably using the default CAS configuration.</p> |
||
| 23 | |||
| 24 | <p>The default CAS bundle configuration should be installed in |
||
| 25 | <code>config/packages/dev/cas_bundle.yaml</code></p> |
||
| 26 | |||
| 27 | <p>Please update your configuration and replace <code>cas_bundle_homepage</code> |
||
| 28 | with an existing route of your app.</p> |
||
| 29 | EOF; |
||
| 30 | |||
| 31 | 1 | return new Response($body); |
|
| 32 | } |
||
| 34 |