Skip to content

Commit 1eab45d

Browse files
committed
Merge pull request #36 from pborreli/typos
Fixed typos
2 parents 6347789 + 049d4ee commit 1eab45d

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

EventListener/InvalidationListener.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ class InvalidationListener implements EventSubscriberInterface
4949
* @param CacheManager $cacheManager
5050
* @param InvalidatorCollection $invalidators
5151
* @param RouterInterface $router
52+
* @param ExpressionLanguage $expressionLanguage
5253
*/
5354
public function __construct(
5455
CacheManager $cacheManager,

Resources/doc/testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Testing
22
=======
33

44
* [Unit tests](#unit-tests)
5-
* [Funtional tests](#functional-tests)
5+
* [Functional tests](#functional-tests)
66

77
Unit tests
88
----------

Resources/doc/varnish.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ fos_http_cache:
3939
4040
* **host**: This must match the web host clients are using when connecting to varnish.
4141
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.
4343
* **port**: The port varnish is listening on for incoming web connections.
4444
4545
**TODO: MOVE** When using ESI, you will want to purge individual fragments. To generate the

Tests/DependencyInjection/FOSHttpCacheExtensionTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Symfony\Component\DependencyInjection\ContainerBuilder;
77
use \Mockery;
88

9-
class FOSHttpCacheExtenstionTest extends \PHPUnit_Framework_TestCase
9+
class FOSHttpCacheExtensionTest extends \PHPUnit_Framework_TestCase
1010
{
1111
/**
1212
* @var FOSHttpCacheExtension
@@ -18,7 +18,7 @@ protected function setUp()
1818
$this->extension = new FOSHttpCacheExtension();
1919
}
2020

21-
public function testConfigLoadVanish()
21+
public function testConfigLoadVarnish()
2222
{
2323
$container = new ContainerBuilder();
2424
$this->extension->load(array($this->getBaseConfig()), $container);

0 commit comments

Comments
 (0)