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

Stdin::getStdIn()   A

Complexity

Conditions 4
Paths 3

Size

Total Lines 14

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 4.3731

Importance

Changes 0
Metric Value
dl 0
loc 14
ccs 5
cts 7
cp 0.7143
rs 9.7998
c 0
b 0
f 0
cc 4
nc 3
nop 0
crap 4.3731
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