AudioHLSFilter   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 9
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A streamFilter() 0 2 1
1
<?php
2
3
/**
4
 * This file is part of the PHP-FFmpeg-video-streaming package.
5
 *
6
 * (c) Amin Yazdanpanah <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
13
namespace Streaming\Filters;
14
15
16
use Streaming\StreamInterface;
17
18
class AudioHLSFilter extends FormatFilter
19
{
20
21
    /**
22
     * @param StreamInterface $stream
23
     * @return mixed
24
     */
25
    public function streamFilter(StreamInterface $stream): void
26
    {
27
        // TODO: Implement streamFilter() method.
28
    }
29
}