Skip to content

Commit 390fe3f

Browse files
committed
Fix CS
1 parent b16aead commit 390fe3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/cli/Streams.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ public static function prompt( $question, $default = null, $marker = ': ', $hide
165165
self::out( $question . $marker );
166166
$line = self::input( null, $hide );
167167

168-
if ( trim($line) !== "" )
168+
if ( trim( $line ) !== '' )
169169
return $line;
170170
if( $default !== false )
171171
return $default;

0 commit comments

Comments
 (0)