* GitHub actions + style fixes + updated packages * Fixed workflows dir * Support for PHP 8.1 (#1) * Update README.md * Revert some changes from upstream
10 lines
197 B
PHP
10 lines
197 B
PHP
<?php
|
|
|
|
namespace Tests\FFMpeg\Unit\Media;
|
|
|
|
use FFMpeg\Format\AudioInterface;
|
|
use FFMpeg\Format\ProgressableInterface;
|
|
|
|
abstract class AudioProg implements ProgressableInterface, AudioInterface
|
|
{
|
|
}
|