Skip to content

Commit

Permalink
forced arrays
Browse files Browse the repository at this point in the history
  • Loading branch information
hiqsol committed May 21, 2016
1 parent d1fdc77 commit e9c4899
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -215,10 +215,10 @@ public function assembleConfigs()
}
}

protected function assembleFile($name, $configs)
protected function assembleFile($name, array $configs)
{
$this->data[$name] = call_user_func_array([Helper::class, 'mergeConfig'], $configs);
$this->writeFile($name, $this->data[$name]);
$this->writeFile($name, (array) $this->data[$name]);
}

/**
Expand Down

0 comments on commit e9c4899

Please sign in to comment.