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 24cef8b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/DependencyInjection/NelmioApiDocExtensionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public static function provideCacheConfig(): iterable
'defaultCachePool' => 'test.cache.default',
'defaultCacheItemId' => 'nelmio.docs.default',
'area1CachePool' => 'test.cache',
'area1CacheItemId' => 'nelmio.docs'
'area1CacheItemId' => 'nelmio.docs',
]
];

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,7 +244,7 @@ public static function provideCacheConfig(): iterable
'defaultCachePool' => 'app.cache',
'defaultCacheItemId' => 'docs',
'area1CachePool' => 'app.cache',
'area1CacheItemId' => 'docs'
'area1CacheItemId' => 'docs',
]
];
}
Expand Down

0 comments on commit 24cef8b

Please sign in to comment.