Skip to content

Commit 91fb810

Browse files
committed
Add missing line break
Before: ``` require: - file1.php - file2.php ``` After: ``` require: - file1.php - file2.php ```
1 parent fbd8c72 commit 91fb810

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features/bootstrap/FeatureContext.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
if ( ! empty( $composer->autoload->files ) ) {
2020
$contents = 'require:' . PHP_EOL;
2121
foreach( $composer->autoload->files as $file ) {
22-
$contents .= ' - ' . dirname( dirname( dirname( __FILE__ ) ) ) . '/' . $file;
22+
$contents .= ' - ' . dirname( dirname( dirname( __FILE__ ) ) ) . '/' . $file . PHP_EOL;
2323
}
2424
@mkdir( sys_get_temp_dir() . '/wp-cli-package-test/' );
2525
$project_config = sys_get_temp_dir() . '/wp-cli-package-test/config.yml';

0 commit comments

Comments
 (0)