|
1 | 1 | tag_list: |
2 | 2 | path: /tag/list |
3 | | - defaults: { _controller: tag_controller::listAction } |
4 | 3 | methods: [GET] |
| 4 | + controller: tag_controller::listAction |
5 | 5 |
|
6 | 6 | tag_error: |
7 | 7 | path: /tag/error |
8 | | - defaults: { _controller: tag_controller::errorAction } |
| 8 | + controller: tag_controller::errorAction |
9 | 9 |
|
10 | 10 | tag_one: |
11 | 11 | path: /tag/{id} |
12 | | - defaults: { _controller: tag_controller::itemAction } |
13 | 12 | methods: [GET,POST] |
| 13 | + controller: tag_controller::itemAction |
14 | 14 |
|
15 | 15 | tag_manual: |
16 | 16 | path: /tag_manual |
17 | | - defaults: { _controller: tag_controller::manualAction } |
| 17 | + controller: tag_controller::manualAction |
18 | 18 |
|
19 | 19 | tag_twig: |
20 | 20 | path: /tag_twig |
21 | | - defaults: { _controller: tag_controller::twigAction } |
| 21 | + controller: tag_controller::twigAction |
22 | 22 |
|
23 | 23 | invalidation_route: |
24 | 24 | path: /invalidate/route/{id} |
25 | | - defaults: { _controller: FOS\HttpCacheBundle\Tests\Functional\Fixtures\Controller\InvalidationController::itemAction } |
| 25 | + controller: FOS\HttpCacheBundle\Tests\Functional\Fixtures\Controller\InvalidationController::itemAction |
26 | 26 |
|
27 | 27 | invalidation_path: |
28 | 28 | path: /invalidate/path/{statusCode} |
29 | | - defaults: { _controller: FOS\HttpCacheBundle\Tests\Functional\Fixtures\Controller\InvalidationController::otherAction } |
| 29 | + controller: FOS\HttpCacheBundle\Tests\Functional\Fixtures\Controller\InvalidationController::otherAction |
30 | 30 |
|
31 | 31 | invalidation_error: |
32 | 32 | path: /invalidate/error |
33 | | - defaults: { _controller: FOS\HttpCacheBundle\Tests\Functional\Fixtures\Controller\InvalidationController::errorAction } |
| 33 | + controller: FOS\HttpCacheBundle\Tests\Functional\Fixtures\Controller\InvalidationController::errorAction |
34 | 34 |
|
35 | 35 | test_cached: |
36 | 36 | path: /cached/{id} |
37 | | - defaults: { _controller: FOS\HttpCacheBundle\Tests\Functional\Fixtures\Controller\TestController::contentAction } |
38 | 37 | methods: [GET,PUT] |
| 38 | + controller: FOS\HttpCacheBundle\Tests\Functional\Fixtures\Controller\TestController::contentAction |
39 | 39 |
|
40 | 40 | test_cached_session: |
41 | 41 | path: /secured_area/cached_session |
42 | | - defaults: { _controller: FOS\HttpCacheBundle\Tests\Functional\Fixtures\Controller\TestController::sessionAction } |
| 42 | + controller: FOS\HttpCacheBundle\Tests\Functional\Fixtures\Controller\TestController::sessionAction |
43 | 43 |
|
44 | 44 | test_noncached: |
45 | 45 | path: /noncached |
46 | | - defaults: { _controller: FOS\HttpCacheBundle\Tests\Functional\Fixtures\Controller\TestController::contentAction } |
| 46 | + controller: FOS\HttpCacheBundle\Tests\Functional\Fixtures\Controller\TestController::contentAction |
47 | 47 |
|
48 | 48 | test_logout: |
49 | 49 | path: /secured_area/logout |
50 | 50 |
|
51 | 51 | test_flash: |
52 | 52 | path: /flash |
53 | | - defaults: { _controller: FOS\HttpCacheBundle\Tests\Functional\Fixtures\Controller\FlashMessageController::flashAction } |
| 53 | + controller: FOS\HttpCacheBundle\Tests\Functional\Fixtures\Controller\FlashMessageController::flashAction |
54 | 54 |
|
55 | 55 | user_context_hash: |
56 | 56 | path: /secured_area/_fos_user_context_hash |
0 commit comments