Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitded042a

Browse files
committed
[FrameworkBundle] HttpCache is not longer abstract
1 parentffd088a commitded042a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

‎src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
namespaceSymfony\Bundle\FrameworkBundle\HttpCache;
1313

14-
useSymfony\Component\HttpKernel\HttpKernelInterface;
14+
useSymfony\Component\HttpKernel\KernelInterface;
1515
useSymfony\Component\HttpKernel\HttpCache\HttpCacheasBaseHttpCache;
1616
useSymfony\Component\HttpKernel\HttpCache\Esi;
1717
useSymfony\Component\HttpKernel\HttpCache\Store;
@@ -23,16 +23,16 @@
2323
*
2424
* @author Fabien Potencier <fabien@symfony.com>
2525
*/
26-
abstractclass HttpCacheextends BaseHttpCache
26+
class HttpCacheextends BaseHttpCache
2727
{
2828
protected$cacheDir;
2929
protected$kernel;
3030

3131
/**
32-
* @paramHttpKernelInterface $kernel AnHttpKernelInterface instance
33-
* @param string$cacheDir The cache directory (default used if null)
32+
* @paramKernelInterface $kernel AnKernelInterface instance
33+
* @param string $cacheDir The cache directory (default used if null)
3434
*/
35-
publicfunction__construct(HttpKernelInterface$kernel,$cacheDir =null)
35+
publicfunction__construct(KernelInterface$kernel,$cacheDir =null)
3636
{
3737
$this->kernel =$kernel;
3838
$this->cacheDir =$cacheDir;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp