Skip to content

Commit 91aaa44

Browse files
minor symfony#20639 [Cache] Mark FilesystemAdapterTrait as internal (nicolas-grekas)
This PR was merged into the 3.2 branch. Discussion ---------- [Cache] Mark FilesystemAdapterTrait as internal | Q | A | ------------- | --- | Branch? | 3.2 | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Commits ------- 62a1958 [Cache] Mark FilesystemAdapterTrait as internal
2 parents 5461c1e + 62a1958 commit 91aaa44

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/Symfony/Component/Cache/Adapter/FilesystemAdapterTrait.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515

1616
/**
1717
* @author Nicolas Grekas <p@tchwork.com>
18+
*
19+
* @internal
1820
*/
1921
trait FilesystemAdapterTrait
2022
{

src/Symfony/Component/Cache/Tests/Adapter/AdapterTestCase.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ public function testDefaultLifeTime()
2828
{
2929
if (isset($this->skippedTests[__FUNCTION__])) {
3030
$this->markTestSkipped($this->skippedTests[__FUNCTION__]);
31-
32-
return;
3331
}
3432

3533
$cache = $this->createCachePool(2);
@@ -51,8 +49,6 @@ public function testNotUnserializable()
5149
{
5250
if (isset($this->skippedTests[__FUNCTION__])) {
5351
$this->markTestSkipped($this->skippedTests[__FUNCTION__]);
54-
55-
return;
5652
}
5753

5854
$cache = $this->createCachePool();

0 commit comments

Comments
 (0)