Skip to content

Commit

Permalink
Merge branch 'master' into guzzle_5_backport
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Roberts committed Oct 18, 2017
2 parents bc03413 + 9112a8b commit 781c07c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ $renderer = new Renderer('http://localhost:3030/batch');
Give it some work:

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

Optionally add a plugin or two (see plugin section):
Expand Down
2 changes: 1 addition & 1 deletion src/Renderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function __construct($url, $plugins = [], $config = [])
{
$this->url = $url;
$this->plugins = $plugins;
$this->config = array_merge(self::$configDefaults, $config);
$this->config = array_merge(static::$configDefaults, $config);
}

/**
Expand Down

0 comments on commit 781c07c

Please sign in to comment.