@@ -75,7 +75,7 @@ public function getConvertDataStandardTheme()
75
75
['<span style="background-color: black; color: white; text-decoration: underline">foo</span> ' , "\e[4mfoo \e[0m " ],
76
76
77
77
// non valid unicode codepoints substitution (only available with PHP >= 5.4)
78
- PHP_VERSION_ID < 50400 ? ['' , '' ] : ['<span style="background-color: black; color: white">foo ' ."\xEF\xBF\xBD" .'</span> ' , "foo \xF4\xFF\xFF\xFF" ],
78
+ \ PHP_VERSION_ID < 50400 ? ['' , '' ] : ['<span style="background-color: black; color: white">foo ' ."\xEF\xBF\xBD" .'</span> ' , "foo \xF4\xFF\xFF\xFF" ],
79
79
];
80
80
}
81
81
@@ -108,7 +108,7 @@ public function getConvertDataWithSolarizedTheme()
108
108
['<span style="background-color: #073642; color: #eee8d5; text-decoration: underline">foo</span> ' , "\e[4mfoo \e[0m " ],
109
109
110
110
// non valid unicode codepoints substitution (only available with PHP >= 5.4)
111
- PHP_VERSION_ID < 50400 ? ['' , '' ] : ['<span style="background-color: #073642; color: #eee8d5">foo ' ."\xEF\xBF\xBD" .'</span> ' , "foo \xF4\xFF\xFF\xFF" ],
111
+ \ PHP_VERSION_ID < 50400 ? ['' , '' ] : ['<span style="background-color: #073642; color: #eee8d5">foo ' ."\xEF\xBF\xBD" .'</span> ' , "foo \xF4\xFF\xFF\xFF" ],
112
112
];
113
113
}
114
114
@@ -141,7 +141,7 @@ public function getConvertDataWithSolarizedXTermTheme()
141
141
['<span style="background-color: #262626; color: #e4e4e4; text-decoration: underline">foo</span> ' , "\e[4mfoo \e[0m " ],
142
142
143
143
// non valid unicode codepoints substitution (only available with PHP >= 5.4)
144
- PHP_VERSION_ID < 50400 ? ['' , '' ] : ['<span style="background-color: #262626; color: #e4e4e4">foo ' ."\xEF\xBF\xBD" .'</span> ' , "foo \xF4\xFF\xFF\xFF" ],
144
+ \ PHP_VERSION_ID < 50400 ? ['' , '' ] : ['<span style="background-color: #262626; color: #e4e4e4">foo ' ."\xEF\xBF\xBD" .'</span> ' , "foo \xF4\xFF\xFF\xFF" ],
145
145
];
146
146
}
147
147
}
0 commit comments