Skip to content

Commit 9112a8b

Browse files
morganpackardroippi
authored andcommitted
'static' reference to configDefaults rather than 'self' (#9)
1 parent 9fe2676 commit 9112a8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)