Completed
Push — master ( 95a54c...7178fa )
by Samuel
10:58
created

NullPipe   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 16
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A error() 0 3 1
A output() 0 3 1
1
<?php
2
3
namespace Dock\IO\Process\Pipe;
4
5
class NullPipe implements Pipe
6
{
7
    /**
8
     * {@inheritdoc}
9
     */
10
    public function error($buffer)
11
    {
12
    }
13
14
    /**
15
     * {@inheritdoc}
16
     */
17
    public function output($buffer)
18
    {
19
    }
20
}
21