Commit 8df52df8 by Taylor Otwell

shorten really long statement.

parent 88c8cf6c
...@@ -66,7 +66,9 @@ class HTML { ...@@ -66,7 +66,9 @@ class HTML {
} }
} }
return '<link href="'.static::entities(URL::to_asset($url)).'"'.static::attributes($attributes).'>'.PHP_EOL; $url = static::entities(URL::to_asset($url));
return '<link href="'.$url.'"'.static::attributes($attributes).'>'.PHP_EOL;
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment