Skip to content

Commit d50c886

Browse files
committed
new_line fix
1 parent 8d6f0f1 commit d50c886

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ $bundles(
2323
);
2424
```
2525

26-
Read the documentation at [www.php-cache.com/symfony/adapter-bundle](http://www.php-cache.com/en/latest/symfony/adapter-bundle/).
26+
Read the documentation at [www.php-cache.com/symfony/adapter-bundle](http://www.php-cache.com/en/latest/symfony/adapter-bundle/).

src/Factory/MongoDBFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class MongoDBFactory extends AbstractAdapterFactory
2929
*/
3030
public function getAdapter(array $config)
3131
{
32-
$manager = new Manager(sprintf('mongodb://%s:%s', $config['host'], $config['port']));
32+
$manager = new Manager(sprintf('mongodb://%s:%s', $config['host'], $config['port']));
3333
$collection = MongoDBCachePool::createCollection($manager, $config['namespace']);
3434

3535
return new MongoDBCachePool($collection);

0 commit comments

Comments
 (0)