From 992b729329971e494a1dd4195191ab6cd5415bcd Mon Sep 17 00:00:00 2001 From: Simpler1 Date: Thu, 28 Mar 2024 09:59:58 -0400 Subject: [PATCH] chore(lint): $ locations --- web/includes/Event.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/includes/Event.php b/web/includes/Event.php index 24dd5bbf4..f45e7af77 100644 --- a/web/includes/Event.php +++ b/web/includes/Event.php @@ -801,13 +801,13 @@ class Event extends ZM_Object { $width = $this->Width(); $height = $this->Height(); - $video_size = " ${width}x${height}"; + $video_size = " {$width}x{$height}"; if ( $scale ) { if ( $scale != 1.0 ) { $width = int($width*$scale); $height = int($height*$scale); - $video_size = " ${width}x${height}"; + $video_size = " {$width}x{$height}"; } } else if ( $size ) { $video_size = $size; @@ -833,7 +833,7 @@ class Event extends ZM_Object { Info("Finished $video_file"); return $video_file; } else { - Info("Video file $video_file already exists for event ${this['Id']}"); + Info("Video file $video_file already exists for event {$this['Id']}"); return $video_file; } return;