[HttpKernel] fix link to source generation

This commit is contained in:
Nicolas Grekas 2019-06-06 11:21:46 +02:00
parent 965ed1634e
commit 4a4b62bf4d

View File

@ -68,7 +68,7 @@ class FileLinkFormatter
*/ */
public function __sleep(): array public function __sleep(): array
{ {
$this->getFileLinkFormat(); $this->fileLinkFormat = $this->getFileLinkFormat();
return ['fileLinkFormat']; return ['fileLinkFormat'];
} }
@ -87,17 +87,19 @@ class FileLinkFormatter
private function getFileLinkFormat() private function getFileLinkFormat()
{ {
if ($this->fileLinkFormat) {
return $this->fileLinkFormat;
}
if ($this->requestStack && $this->baseDir && $this->urlFormat) { if ($this->requestStack && $this->baseDir && $this->urlFormat) {
$request = $this->requestStack->getMasterRequest(); $request = $this->requestStack->getMasterRequest();
if ($request instanceof Request && (!$this->urlFormat instanceof \Closure || $this->urlFormat = ($this->urlFormat)())) { if ($request instanceof Request && (!$this->urlFormat instanceof \Closure || $this->urlFormat = ($this->urlFormat)())) {
$this->fileLinkFormat = [ return [
$request->getSchemeAndHttpHost().$request->getBasePath().$this->urlFormat, $request->getSchemeAndHttpHost().$request->getBasePath().$this->urlFormat,
$this->baseDir.\DIRECTORY_SEPARATOR, '', $this->baseDir.\DIRECTORY_SEPARATOR, '',
]; ];
} }
} }
return $this->fileLinkFormat;
} }
} }