Rename variable

This commit is contained in:
Art4 2024-12-14 14:53:56 +00:00
parent 8178f87e61
commit 6a2e8739d1

View file

@ -164,17 +164,17 @@ class PostMedia extends BaseEntity
/** /**
* Get preview path for given media id relative to the base URL * Get preview path for given media id relative to the base URL
* *
* @param string $size One of the Proxy::SIZE_* constants * @param string $size One of the Proxy::SIZE_* constants
* @param bool $blurred If "true", the preview will be blurred * @param bool $blur If "true", the preview will be blurred
* @return string preview link * @return string preview link
*/ */
public function getPreviewPath(string $size = '', bool $blurred = false): string public function getPreviewPath(string $size = '', bool $blur = false): string
{ {
$path = '/photo/preview/' . $path = '/photo/preview/' .
(Proxy::getPixelsFromSize($size) ? Proxy::getPixelsFromSize($size) . '/' : '') . (Proxy::getPixelsFromSize($size) ? Proxy::getPixelsFromSize($size) . '/' : '') .
$this->id; $this->id;
if ($blurred) { if ($blur) {
$path .= '?' . http_build_query(['blur' => true]); $path .= '?' . http_build_query(['blur' => true]);
} }
return $path; return $path;