Пример #1
0
 protected function setUp()
 {
     parent::setUp();
     $this->ffmpeg = $this->prophesize(FFMpeg::class);
     $this->video = $this->prophesize(Video::class);
     $this->frame = $this->prophesize(Frame::class);
     $this->videoThumbnailService = new VideoThumbnailService($this->ffmpeg->reveal());
 }