File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -72,8 +72,7 @@ class Diff
72
72
'context ' => 3 , //???
73
73
'ignoreNewLines ' => false , //ignore new lines in comparison
74
74
'ignoreWhitespace ' => false , //ignore whitespace in comparision
75
- 'ignoreCase ' => false , //ignore case in comparisons
76
- 'showall ' =>false //do not fold identical lines into elipses
75
+ 'ignoreCase ' => false //ignore case in comparisons
77
76
);
78
77
79
78
/**
Original file line number Diff line number Diff line change @@ -88,6 +88,6 @@ public function setOptions(array $options)
88
88
*/
89
89
public function getOption ($ name )
90
90
{
91
- return isset ($ this ->options [$ name ]) ? $ this ->options [$ name ] : null ;
91
+ return ( isset ($ this ->options [$ name ]) ? $ this ->options [$ name ] : null ) ;
92
92
}
93
93
}
Original file line number Diff line number Diff line change @@ -48,7 +48,8 @@ class Diff_Renderer_Html_Array extends Diff_Renderer_Abstract
48
48
* @var array Array of the default options that apply to this renderer.
49
49
*/
50
50
protected $ defaultOptions = array (
51
- 'tabSize ' => 4
51
+ 'tabSize ' => 4 ,
52
+ 'showall ' =>false //do not fold identical lines into elipses
52
53
);
53
54
54
55
/**
You can’t perform that action at this time.
0 commit comments