8000 [Asset] Add support for preloading with links and HTTP/2 push by dunglas · Pull Request #21478 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Asset] Add support for preloading with links and HTTP/2 push #21478

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 16 commits into from
Prev Previous commit
Next Next commit
Remove unseless null
  • Loading branch information
dunglas committed Feb 7, 2017
commit 05134b6b2f16e37432843dc2ad03aab8a2c4bfeb
2 changes: 1 addition & 1 deletion src/Symfony/Component/Asset/Preload/PreloadManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function clear()
public function buildLinkValue()
{
if (!$this->resources) {
return null;
return;
}

$parts = array();
Expand Down
0