Skip to content

Commit e787394

Browse files
author
Victor Isadov
authored
Change order in array_merge
Closes #575
1 parent 0e36014 commit e787394

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/HtmlBuilder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public function favicon($url, $attributes = [], $secure = null)
132132
{
133133
$defaults = ['rel' => 'shortcut icon', 'type' => 'image/x-icon'];
134134

135-
$attributes = array_merge($attributes, $defaults);
135+
$attributes = array_merge($defaults, $attributes);
136136

137137
$attributes['href'] = $this->url->asset($url, $secure);
138138

0 commit comments

Comments
 (0)