From a39d8939dbc9992e290c5c0525964662c934eb9c Mon Sep 17 00:00:00 2001 From: Romain Neutron Date: Wed, 26 Jun 2013 15:17:16 +0200 Subject: [PATCH] Fix #43 --- src/FFMpeg/Media/Video.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/FFMpeg/Media/Video.php b/src/FFMpeg/Media/Video.php index f9c3884..02c8b5c 100644 --- a/src/FFMpeg/Media/Video.php +++ b/src/FFMpeg/Media/Video.php @@ -150,10 +150,10 @@ class Video extends Audio /** * Gets the frame at timecode. * - * @param Timecode $at + * @param TimeCode $at * @return Frame */ - public function frame(Timecode $at) + public function frame(TimeCode $at) { return new Frame($this->pathfile, $this->driver, $this->ffprobe, $at); }