Standard fixing

This commit is contained in:
guimeira 2013-09-27 01:34:46 -03:00
commit e1688c7966
2 changed files with 11 additions and 11 deletions

View file

@ -62,7 +62,7 @@ class ClipFilter implements VideoFilterInterface
{ {
$commands = array('-ss', (string) $this->start); $commands = array('-ss', (string) $this->start);
if($this->duration !== null) { if ($this->duration !== null) {
$commands[] = '-t'; $commands[] = '-t';
$commands[] = (string) $this->duration; $commands[] = (string) $this->duration;
} }