@@ -83,19 +83,23 @@ public function main(): void
8383 {
8484 // Style for column names with miss matched column types.
8585 $ style = new OutputFormatterStyle (null , 'red ' );
86- $ this ->output ->getFormatter ()->setStyle ('mm_column ' , $ style );
86+ $ this ->output ->getFormatter ()
87+ ->setStyle ('mm_column ' , $ style );
8788
8889 // Style for column types of columns with miss matched column types.
8990 $ style = new OutputFormatterStyle ('yellow ' );
90- $ this ->output ->getFormatter ()->setStyle ('mm_type ' , $ style );
91+ $ this ->output ->getFormatter ()
92+ ->setStyle ('mm_type ' , $ style );
9193
9294 // Style for obsolete tables.
9395 $ style = new OutputFormatterStyle ('yellow ' );
94- $ this ->output ->getFormatter ()->setStyle ('obsolete_table ' , $ style );
96+ $ this ->output ->getFormatter ()
97+ ->setStyle ('obsolete_table ' , $ style );
9598
9699 // Style for missing tables.
97100 $ style = new OutputFormatterStyle ('red ' );
98- $ this ->output ->getFormatter ()->setStyle ('miss_table ' , $ style );
101+ $ this ->output ->getFormatter ()
102+ ->setStyle ('miss_table ' , $ style );
99103
100104 $ lists = $ this ->getTableLists ();
101105
@@ -203,7 +207,10 @@ private function getTableLists(): array
203207 */
204208 private function missingAuditTables (array $ tableNames ): void
205209 {
206- if (empty ($ tableNames )) return ;
210+ if (empty ($ tableNames ))
211+ {
212+ return ;
213+ }
207214
208215 $ this ->io ->title ('Missing Audit Tables ' );
209216 $ this ->io ->listing ($ tableNames );
@@ -217,7 +224,10 @@ private function missingAuditTables(array $tableNames): void
217224 */
218225 private function obsoleteAuditTables (array $ tableNames ): void
219226 {
220- if (empty ($ tableNames ) || !$ this ->input ->getOption ('full ' )) return ;
227+ if (empty ($ tableNames ) || !$ this ->input ->getOption ('full ' ))
228+ {
229+ return ;
230+ }
221231
222232 $ this ->io ->title ('Obsolete Audit Tables ' );
223233 $ this ->io ->listing ($ tableNames );
0 commit comments