Skip to content

Commit

Permalink
cs-fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
belgattitude committed Jun 3, 2019
1 parent a5da884 commit 69e9690
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/unit/Video/VideoConvertParamsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function setUp(): void
public function testConstructWithParams(): void
{
$params = new VideoConvertParams([
VideoConvertParamsInterface::PARAM_AUDIO_CODEC => 'mp3'
VideoConvertParamsInterface::PARAM_AUDIO_CODEC => 'mp3',
]);

self::assertSame('mp3', $params->getParam(VideoConvertParamsInterface::PARAM_AUDIO_CODEC));
Expand All @@ -40,7 +40,7 @@ public function testConstructWithParamsThrowsInvalidParamException(): void
$this->expectException(InvalidParamException::class);

new VideoConvertParams([
'not_exists' => 'mp3'
'not_exists' => 'mp3',
]);
}

Expand Down
4 changes: 2 additions & 2 deletions tests/unit/Video/VideoThumbParamsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function setUp(): void
public function testConstructWithParams(): void
{
$params = new VideoThumbParams([
VideoThumbParamsInterface::PARAM_QUALITY_SCALE => 2
VideoThumbParamsInterface::PARAM_QUALITY_SCALE => 2,
]);

self::assertSame(2, $params->getParam(VideoThumbParamsInterface::PARAM_QUALITY_SCALE));
Expand All @@ -38,7 +38,7 @@ public function testConstructWithParamsThrowsInvalidParamException(): void
$this->expectException(InvalidParamException::class);

new VideoThumbParams([
'not_exists' => 'mp3'
'not_exists' => 'mp3',
]);
}

Expand Down

0 comments on commit 69e9690

Please sign in to comment.