* GitHub actions + style fixes + updated packages * Fixed workflows dir * Support for PHP 8.1 (#1) * Update README.md * Revert some changes from upstream
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			190 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			190 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Tests\FFMpeg\Unit\Format\Audio;
 | 
						|
 | 
						|
use FFMpeg\Format\Audio\Mp3;
 | 
						|
 | 
						|
class Mp3Test extends AudioTestCase
 | 
						|
{
 | 
						|
    public function getFormat()
 | 
						|
    {
 | 
						|
        return new Mp3();
 | 
						|
    }
 | 
						|
}
 |