Completed
Pull Request — master (#5)
by Márk
03:36
created

InflateStream   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 17
Duplicated Lines 100 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 3
c 1
b 0
f 1
lcom 0
cbo 1
dl 17
loc 17
ccs 7
cts 7
cp 1
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 4 4 1
A getReadFilter() 4 4 1
A getWriteFilter() 4 4 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
3
namespace Http\Message\Encoding;
4
5
use Psr\Http\Message\StreamInterface;
6
7
/**
8
 * Stream inflate (RFC 1951).
9
 *
10
 * @author Joel Wurtz <[email protected]>
11
 */
12 View Code Duplication
class InflateStream extends FilteredStream
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
13
{
14 4
    public function __construct(StreamInterface $stream, $level = -1)
15
    {
16 4
        parent::__construct($stream, ['window' => -15], ['window' => -15, 'level' => $level]);
17 4
    }
18
19 4
    public function getReadFilter()
20
    {
21 4
        return 'zlib.inflate';
22
    }
23
24 4
    public function getWriteFilter()
25
    {
26 4
        return 'zlib.deflate';
27
    }
28
}
29