Skip to content

Commit

Permalink
ID#323: introduced type hinting.
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Achatz committed Jun 30, 2018
1 parent 917d37f commit 36d1873
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extensions/htmlheader/biz/ConditionalDynamicCssNode.php
Expand Up @@ -31,8 +31,8 @@ class ConditionalDynamicCssNode extends DynamicCssNode implements CssNode {

private $condition;

public function __construct($namespace, $filename, $condition, $url = null, $fcaction = true, $media = null) {
parent::__construct($url, $namespace, $filename, $fcaction, $media);
public function __construct($namespace, $filename, $condition, $url = null, $fcAction = true, $media = null) {
parent::__construct($url, $namespace, $filename, $fcAction, $media);
$this->condition = $condition;
}

Expand Down

0 comments on commit 36d1873

Please sign in to comment.