scratch – Blame information for rev
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
115 | office | 1 | <?php |
2 | |||
3 | namespace Tests\FFMpeg\Functional; |
||
4 | |||
5 | use FFMpeg\FFMpeg; |
||
6 | |||
7 | abstract class FunctionalTestCase extends \PHPUnit_Framework_TestCase |
||
8 | { |
||
9 | /** |
||
10 | * @return FFMpeg |
||
11 | */ |
||
12 | public function getFFMpeg() |
||
13 | { |
||
14 | return FFMpeg::create(array('timeout' => 300)); |
||
15 | } |
||
16 | } |