Completed
Push — version-4-wip ( 38f335 )
by Craig
03:27
created

Stdin::setStdIn()   A

Complexity

Conditions 3
Paths 4

Size

Total Lines 12

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 3.4746

Importance

Changes 0
Metric Value
dl 0
loc 12
ccs 5
cts 8
cp 0.625
rs 9.8666
c 0
b 0
f 0
cc 3
nc 4
nop 0
crap 3.4746
1
<?php
2
3
namespace League\CLImate\Util\Reader;
4
5
class Stdin extends Stream
6
{
7
    public function __construct()
8
    {
9
        parent::__construct("php://stdin");
10
    }
11
}
12