Skip to content

Commit 2acd8b8

Browse files
[11.x] Adds missing end-of-line to ServiceProvider::addProviderToBootstrapFile (#49494)
* Adds missing end-of-line * Apply fixes from StyleCI --------- Co-authored-by: StyleCI Bot <[email protected]>
1 parent 1181cab commit 2acd8b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/Support/ServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ public static function addProviderToBootstrapFile(string $provider, string $path
507507
'.$providers.'
508508
];';
509509

510-
file_put_contents($path, $content);
510+
file_put_contents($path, $content.PHP_EOL);
511511

512512
return true;
513513
}

0 commit comments

Comments
 (0)