-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
We need to investigate why empty lines in aray aren't removed:
return [
"default" => env("DB_CONNECTION", "mysql"),
"connections" => [
"sqlite" => [
"driver" => "sqlite",
"url" => env("DATABASE_URL"),
"database" => env("DB_DATABASE", database_path("database.sqlite")),
"prefix" => "",
"foreign_key_constraints" => env("DB_FOREIGN_KEYS", true),
],
];should be like here:
return [
"default" => env("DB_CONNECTION", "mysql"),
"connections" => [
"sqlite" => [
"driver" => "sqlite",
"url" => env("DATABASE_URL"),
"database" => env("DB_DATABASE", database_path("database.sqlite")),
"prefix" => "",
"foreign_key_constraints" => env("DB_FOREIGN_KEYS", true),
],
];NoExtraBlankLines fixer should cover that, but it's not working for some reason.
We need that space?
Originally posted by @kamilpiech97 in #86 (comment)
Metadata
Metadata
Assignees
Labels
No labels