Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Brajkovic committed Mar 5, 2024
1 parent ba64b0b commit 77ea24a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/DependencyInjection/NelmioApiDocExtensionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,8 @@ public static function provideCacheConfig(): iterable
'defaultCachePool' => 'test.cache.default',
'defaultCacheItemId' => 'nelmio.docs.default',
'area1CachePool' => 'test.cache',
'area1CacheItemId' => 'nelmio.docs'
]
'area1CacheItemId' => 'nelmio.docs',
],
];

yield [
Expand All @@ -218,14 +218,14 @@ public static function provideCacheConfig(): iterable
'defaultCachePool' => null,
'defaultCacheItemId' => null,
'area1CachePool' => 'app.cache',
'area1CacheItemId' => 'docs'
]
'area1CacheItemId' => 'docs',
],
];

yield [
'config' => [
'cache' => [
'pool' => 'app.cache'
'pool' => 'app.cache',
],
'areas' => [
'default' => [
Expand All @@ -244,8 +244,8 @@ public static function provideCacheConfig(): iterable
'defaultCachePool' => 'app.cache',
'defaultCacheItemId' => 'docs',
'area1CachePool' => 'app.cache',
'area1CacheItemId' => 'docs'
]
'area1CacheItemId' => 'docs',
],
];
}
}

0 comments on commit 77ea24a

Please sign in to comment.