Skip to content

Commit 72e8d44

Browse files
authored
Remove extra whitespace in comments
1 parent 412b8bc commit 72e8d44

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/Generators/TblClassGenerator.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,13 @@ private function generateTblClass(array $tables, array $foreignKeys): string
102102
$tableConst = $this->naming->getTableConstName($table, true);
103103

104104
$out .= "\n";
105-
$out .= " /** TABLE: `{$table}` */\n";
105+
$out .= " /** TABLE: `{$table}` */ ";
106106
$out .= " public const {$tableConst} = '{$table}';\n";
107107

108108
foreach ($columns as $column) {
109109
$colConst = $this->naming->getColumnConstName($table, $column);
110110

111-
$out .= " /** COLUMN: `{$table}.{$column}` */\n";
111+
$out .= " /** COLUMN: `{$table}.{$column}` */ ";
112112
$out .= " public const {$colConst} = '{$column}';\n";
113113
}
114114
}
@@ -124,7 +124,7 @@ private function generateTblClass(array $tables, array $foreignKeys): string
124124
);
125125

126126
$out .= "\n";
127-
$out .= " /** FK: `{$fk['from_table']}.{$fk['from_column']}` → `{$fk['to_table']}.{$fk['to_column']}` */\n";
127+
$out .= " /** FK: `{$fk['from_table']}.{$fk['from_column']}` → `{$fk['to_table']}.{$fk['to_column']}` */ ";
128128
$out .= " public const {$fkConst} = '{$fk['from_column']}';\n";
129129
}
130130
}
@@ -142,7 +142,7 @@ private function generateTblClass(array $tables, array $foreignKeys): string
142142
$enumConst = $this->naming->getEnumConstName($table, $value);
143143

144144
$out .= "\n";
145-
$out .= " /** ENUM: `{$table}.{$compound}` */\n";
145+
$out .= " /** ENUM: `{$table}.{$compound}` */ ";
146146
$out .= " public const {$enumConst} = '{$value}';\n";
147147
}
148148
}

0 commit comments

Comments
 (0)