File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed
Tests/DependencyInjection Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ class InvalidationListener implements EventSubscriberInterface
49
49
* @param CacheManager $cacheManager
50
50
* @param InvalidatorCollection $invalidators
51
51
* @param RouterInterface $router
52
+ * @param ExpressionLanguage $expressionLanguage
52
53
*/
53
54
public function __construct (
54
55
CacheManager $ cacheManager ,
Original file line number Diff line number Diff line change 2
2
=======
3
3
4
4
* [ Unit tests] ( #unit-tests )
5
- * [ Funtional tests] ( #functional-tests )
5
+ * [ Functional tests] ( #functional-tests )
6
6
7
7
Unit tests
8
8
----------
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ fos_http_cache:
39
39
40
40
* **host**: This must match the web host clients are using when connecting to varnish.
41
41
You will not notice if this is mistyped, but cache invalidation will never happen.
42
- * **ips**: List of IP adresses of your varnish servers. Comma separated.
42
+ * **ips**: List of IP addresses of your varnish servers. Comma separated.
43
43
* **port**: The port varnish is listening on for incoming web connections.
44
44
45
45
**TODO: MOVE** When using ESI, you will want to purge individual fragments. To generate the
Original file line number Diff line number Diff line change 6
6
use Symfony \Component \DependencyInjection \ContainerBuilder ;
7
7
use \Mockery ;
8
8
9
- class FOSHttpCacheExtenstionTest extends \PHPUnit_Framework_TestCase
9
+ class FOSHttpCacheExtensionTest extends \PHPUnit_Framework_TestCase
10
10
{
11
11
/**
12
12
* @var FOSHttpCacheExtension
@@ -18,7 +18,7 @@ protected function setUp()
18
18
$ this ->extension = new FOSHttpCacheExtension ();
19
19
}
20
20
21
- public function testConfigLoadVanish ()
21
+ public function testConfigLoadVarnish ()
22
22
{
23
23
$ container = new ContainerBuilder ();
24
24
$ this ->extension ->load (array ($ this ->getBaseConfig ()), $ container );
You can’t perform that action at this time.
0 commit comments