Skip to content

Commit 85c9541

Browse files
Enable native_constant_invocation CS fixer
1 parent fe3fca1 commit 85c9541

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DeprecationErrorHandler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public static function register($mode = 0)
106106
echo "\n".ucfirst($group).' deprecation triggered by '.$class.'::'.$method.':';
107107
echo "\n".$msg;
108108
echo "\nStack trace:";
109-
echo "\n".str_replace(' '.getcwd().DIRECTORY_SEPARATOR, ' ', $e->getTraceAsString());
109+
echo "\n".str_replace(' '.getcwd().\DIRECTORY_SEPARATOR, ' ', $e->getTraceAsString());
110110
echo "\n";
111111

112112
exit(1);
@@ -230,7 +230,7 @@ private static function hasColorSupport()
230230
return true;
231231
}
232232

233-
if (DIRECTORY_SEPARATOR === '\\') {
233+
if (\DIRECTORY_SEPARATOR === '\\') {
234234
return (\function_exists('sapi_windows_vt100_support')
235235
&& sapi_windows_vt100_support(STDOUT))
236236
|| false !== getenv('ANSICON')

0 commit comments

Comments
 (0)