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