Skip to content

Commit ec0ebb1

Browse files
author
Victor Isadov
authored
Merge pull request #593 from LaravelCollective/decadence-patch-1
Change order in array_merge
2 parents 0e36014 + e787394 commit ec0ebb1

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)