We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54c397d commit 63801a7Copy full SHA for 63801a7
src/Psr16/TmpfsCacheEngine.php
@@ -7,8 +7,8 @@
7
class TmpfsCacheEngine extends FileSystemCacheEngine
8
{
9
10
- public function __construct(?LoggerInterface $logger = null)
+ public function __construct(string $prefix = "cache", ?LoggerInterface $logger = null)
11
12
- parent::__construct('cache', '/dev/shm', $logger);
+ parent::__construct($prefix, '/dev/shm', $logger);
13
}
14
0 commit comments