Mutagenesis\Mutation\BooleanFalse::getMutation PHP Method

getMutation() public method

Replace boolean FALSE with TRUE
public getMutation ( array $tokens, integer $index ) : array
$tokens array
$index integer
return array
    public function getMutation(array $tokens, $index)
    {
        $tokens[$index][0] = T_STRING;
        $tokens[$index][1] = 'true';
        return $tokens;
    }
BooleanFalse