Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / system / tests / modules / error_test / error_test.routing.yml
1 error_test.generate_warnings:
2   path: '/error-test/generate-warnings'
3   defaults:
4     _controller: '\Drupal\error_test\Controller\ErrorTestController::generateWarnings'
5   requirements:
6     _access: 'TRUE'
7
8 error_test.generate_fatals:
9   path: '/error-test/generate-fatals'
10   defaults:
11     _controller: '\Drupal\error_test\Controller\ErrorTestController::generateFatals'
12   requirements:
13     _access: 'TRUE'
14
15 error_test.generate_warnings_with_report:
16   path: '/error-test/generate-warnings-with-report'
17   defaults:
18     _controller: '\Drupal\error_test\Controller\ErrorTestController::generateWarnings'
19     collect_errors: TRUE
20   requirements:
21     _access: 'TRUE'
22
23 error_test.trigger_exception:
24   path: '/error-test/trigger-exception'
25   defaults:
26     _controller: '\Drupal\error_test\Controller\ErrorTestController::triggerException'
27   requirements:
28     _access: 'TRUE'
29
30 error_test.trigger_pdo_exception:
31   path: '/error-test/trigger-pdo-exception'
32   defaults:
33     _controller: '\Drupal\error_test\Controller\ErrorTestController::triggerPDOException'
34   requirements:
35     _access: 'TRUE'
36
37 error_test.trigger_renderer_exception:
38   path: '/error-test/trigger-renderer-exception'
39   defaults:
40     _controller: '\Drupal\error_test\Controller\ErrorTestController::triggerRendererException'
41   requirements:
42     _access: 'TRUE'