Skip to content

Commit 0f45b38

Browse files
committed
style
1 parent c7348f3 commit 0f45b38

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

src/Cache/FixedTaggingCachePool.php

+2
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ public function deleteItems(array $keys)
9898
public function save(CacheItemInterface $item)
9999
{
100100
$this->addTags($item);
101+
101102
return $this->cache->save($item);
102103
}
103104

@@ -107,6 +108,7 @@ public function save(CacheItemInterface $item)
107108
public function saveDeferred(CacheItemInterface $item)
108109
{
109110
$this->addTags($item);
111+
110112
return $this->cache->saveDeferred($item);
111113
}
112114

tests/ContainerTest.php

-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
*/
1919
class ContainerTest extends TestCase
2020
{
21-
/**
22-
*
23-
*/
2421
public function testContainer()
2522
{
2623
//$container = $this->createContainer();

tests/DependencyInjection/CacheExtensionTest.php

-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@
2020
*/
2121
class CacheExtensionTest extends TestCase
2222
{
23-
/**
24-
*
25-
*/
2623
public function testRouterBuilder()
2724
{
2825
$container = $this->createContainerFromFile('router');

0 commit comments

Comments
 (0)