Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed CS and missing PHPDoc
  • Loading branch information
Jérôme Vieilledent committed Oct 29, 2014
1 parent bfbf119 commit 675154c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
Expand Up @@ -21,11 +21,17 @@ class VarnishProxyClientFactory
* @var ConfigResolverInterface
*/
private $configResolver;

/**
* @var DynamicSettingParserInterface
*/
private $dynamicSettingParser;

/**
* Configured class for Varnish proxy client service.
*
* @var string
*/
private $proxyClientClass;

public function __construct(
Expand Down
Expand Up @@ -14,6 +14,11 @@
use InvalidArgumentException;
use Symfony\Component\DependencyInjection\Reference;

/**
* HttpCache related compiler pass.
*
* Ensures Varnish proxy client is correctly configured.
*/
class HttpCachePass implements CompilerPassInterface
{
public function process( ContainerBuilder $container )
Expand Down
6 changes: 6 additions & 0 deletions eZ/Publish/Core/MVC/Symfony/Cache/Http/FOSPurgeClient.php
Expand Up @@ -12,6 +12,12 @@
use eZ\Publish\Core\MVC\Symfony\Cache\PurgeClientInterface;
use FOS\HttpCacheBundle\CacheManager;

/**
* Purge client based on FOSHttpCacheBundle.
*
* Only support BAN requests on purpose, to be able to invalidate cache for a
* collection of Location/Content objects.
*/
class FOSPurgeClient implements PurgeClientInterface
{
/**
Expand Down

0 comments on commit 675154c

Please sign in to comment.