Completed
Push — master ( 42619d...127a00 )
by Richard
01:59
created

InteractiveStringInput::setInteractive()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 1
1
<?php
2
3
use Symfony\Component\Console\Input\StringInput;
4
5
class InteractiveStringInput extends StringInput
6
{
7
    public function setInteractive($interactive)
8
    {
9
        // this function is disabled to prevent setting non interactive mode on string input after posix_isatty return false
10
    }
11
}