8000 [2.3] [WIP][HttpCache] StoreHouseKeepingInteface by liuggio · Pull Request #6855 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[2.3] [WIP][HttpCache] StoreHouseKeepingInteface #6855

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
created the StoreHouseKeepingInteface
  • Loading branch information
liuggio committed Jan 24, 2013
commit b1ff3dbeae66e61e796792aba7a5f8645214badf
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\HttpKernel\HttpCache;

/**
* Interface implemented by HTTP cache stores, the stores should provide a cleaner
*
* @author Giulio De Donato <liuggio@gmail.com>
* @author Fabien Potencier <fabien@symfony.com>
*/
interface StoreHousekeepingInterface
{
/**
* clear all the stale entries
*
* @return int the number of the cleared entries
*/
public function clear();

}
0