Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion php/EE/DocParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public function get_longdesc() {

$lines[] = $line;
}
$longdesc = trim( implode( $lines, "\n" ) );
$longdesc = trim( implode( "\n", $lines ) );

return $longdesc;
}
Expand Down
2 changes: 1 addition & 1 deletion php/commands/help.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ private static function indent( $whitespace, $text ) {
foreach ( $lines as &$line ) {
$line = $whitespace . $line;
}
return implode( $lines, "\n" );
return implode( "\n", $lines );
}

private static function pass_through_pager( $out ) {
Expand Down
1 change: 1 addition & 0 deletions utils/make-phar.php
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,7 @@ function get_composer_versions( $current_version ) {
$phar->setStub( <<<EOB
#!/usr/bin/env php
<?php
error_reporting( E_ALL ^ ( E_NOTICE | E_WARNING | E_DEPRECATED ) );
Phar::mapPhar();
include 'phar://ee.phar{$phar_boot}';
__HALT_COMPILER();
Expand Down