Skip to content

Commit

Permalink
'static' reference to configDefaults rather than 'self' (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
morganpackard authored and roippi committed Oct 18, 2017
1 parent 9fe2676 commit 9112a8b
Showing 1 changed file with 1 addition and 1 deletion.
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 9112a8b

Please sign in to comment.