Skip to content

Commit 781c07c

Browse files
author
Ben Roberts
committed
Merge branch 'master' into guzzle_5_backport
2 parents bc03413 + 9112a8b commit 781c07c

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
@@ -26,7 +26,7 @@ $renderer = new Renderer('http://localhost:3030/batch');
2626
Give it some work:
2727

2828
```
29-
$renderer->addJob('myViewId', ['name' => 'my_module_name', 'data' => ['some' => ['props']]);
29+
$renderer->addJob('myViewId', ['name' => 'my_module_name', 'data' => ['some' => ['props']]]);
3030
```
3131

3232
Optionally add a plugin or two (see plugin section):

src/Renderer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function __construct($url, $plugins = [], $config = [])
4949
{
5050
$this->url = $url;
5151
$this->plugins = $plugins;
52-
$this->config = array_merge(self::$configDefaults, $config);
52+
$this->config = array_merge(static::$configDefaults, $config);
5353
}
5454

5555
/**

0 commit comments

Comments
 (0)