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

InteractiveStringInput   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 7
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A setInteractive() 0 4 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
}