Skip to content

Fixed typos #36

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

Merged
merged 1 commit into from
Feb 1, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions EventListener/InvalidationListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ class InvalidationListener implements EventSubscriberInterface
* @param CacheManager $cacheManager
* @param InvalidatorCollection $invalidators
* @param RouterInterface $router
* @param ExpressionLanguage $expressionLanguage
*/
public function __construct(
CacheManager $cacheManager,
Expand Down
2 changes: 1 addition & 1 deletion Resources/doc/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Testing
=======

* [Unit tests](#unit-tests)
* [Funtional tests](#functional-tests)
* [Functional tests](#functional-tests)

Unit tests
----------
Expand Down
2 changes: 1 addition & 1 deletion Resources/doc/varnish.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ fos_http_cache:

* **host**: This must match the web host clients are using when connecting to varnish.
You will not notice if this is mistyped, but cache invalidation will never happen.
* **ips**: List of IP adresses of your varnish servers. Comma separated.
* **ips**: List of IP addresses of your varnish servers. Comma separated.
* **port**: The port varnish is listening on for incoming web connections.

**TODO: MOVE** When using ESI, you will want to purge individual fragments. To generate the
Expand Down
4 changes: 2 additions & 2 deletions Tests/DependencyInjection/FOSHttpCacheExtensionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Symfony\Component\DependencyInjection\ContainerBuilder;
use \Mockery;

class FOSHttpCacheExtenstionTest extends \PHPUnit_Framework_TestCase
class FOSHttpCacheExtensionTest extends \PHPUnit_Framework_TestCase
{
/**
* @var FOSHttpCacheExtension
Expand All @@ -18,7 +18,7 @@ protected function setUp()
$this->extension = new FOSHttpCacheExtension();
}

public function testConfigLoadVanish()
public function testConfigLoadVarnish()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

love that one :-)

thanks @pborreli

{
$container = new ContainerBuilder();
$this->extension->load(array($this->getBaseConfig()), $container);
Expand Down