Upgrade 1-11.38

This commit is contained in:
xesmyd
2026-03-30 14:10:30 +02:00
parent f2a7e6d1fc
commit ac648ef29d
24665 changed files with 69682 additions and 2205004 deletions
+4 -5
View File
@@ -11,12 +11,13 @@
namespace Symfony\Component\Cache\Tests\Simple;
use Symfony\Component\Cache\Adapter\FilesystemAdapter;
use Symfony\Component\Cache\Simple\Psr6Cache;
/**
* @group legacy
* @group time-sensitive
*/
abstract class Psr6CacheTest extends CacheTestCase
class Psr6CacheTest extends CacheTestCase
{
protected $skippedTests = [
'testPrune' => 'Psr6Cache just proxies',
@@ -24,8 +25,6 @@ abstract class Psr6CacheTest extends CacheTestCase
public function createSimpleCache($defaultLifetime = 0)
{
return new Psr6Cache($this->createCacheItemPool($defaultLifetime));
return new Psr6Cache(new FilesystemAdapter('', $defaultLifetime));
}
abstract protected function createCacheItemPool($defaultLifetime = 0);
}