Skip to content

Commit 4a6c589

Browse files
committed
Update commented markup for the happiness of @C-Lodder
1 parent 793ad89 commit 4a6c589

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

src/Mysql/MysqlImporter.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -120,22 +120,22 @@ protected function getAlterTableSql(\SimpleXMLElement $structure)
120120
/*
121121
Debug.
122122
echo '<pre>';
123-
echo '<br />Non_unique: '.
123+
echo '<br>Non_unique: '.
124124
((string) $newLookup[$name][$i]['Non_unique'] == $oldLookup[$name][$i]->Non_unique ? 'Pass' : 'Fail').' '.
125125
(string) $newLookup[$name][$i]['Non_unique'].' vs '.$oldLookup[$name][$i]->Non_unique;
126-
echo '<br />Column_name: '.
126+
echo '<br>Column_name: '.
127127
((string) $newLookup[$name][$i]['Column_name'] == $oldLookup[$name][$i]->Column_name ? 'Pass' : 'Fail').' '.
128128
(string) $newLookup[$name][$i]['Column_name'].' vs '.$oldLookup[$name][$i]->Column_name;
129-
echo '<br />Seq_in_index: '.
129+
echo '<br>Seq_in_index: '.
130130
((string) $newLookup[$name][$i]['Seq_in_index'] == $oldLookup[$name][$i]->Seq_in_index ? 'Pass' : 'Fail').' '.
131131
(string) $newLookup[$name][$i]['Seq_in_index'].' vs '.$oldLookup[$name][$i]->Seq_in_index;
132-
echo '<br />Collation: '.
132+
echo '<br>Collation: '.
133133
((string) $newLookup[$name][$i]['Collation'] == $oldLookup[$name][$i]->Collation ? 'Pass' : 'Fail').' '.
134134
(string) $newLookup[$name][$i]['Collation'].' vs '.$oldLookup[$name][$i]->Collation;
135-
echo '<br />Index_type: '.
135+
echo '<br>Index_type: '.
136136
((string) $newLookup[$name][$i]['Index_type'] == $oldLookup[$name][$i]->Index_type ? 'Pass' : 'Fail').' '.
137137
(string) $newLookup[$name][$i]['Index_type'].' vs '.$oldLookup[$name][$i]->Index_type;
138-
echo '<br />Same = '.($same ? 'true' : 'false');
138+
echo '<br>Same = '.($same ? 'true' : 'false');
139139
echo '</pre>';
140140
*/
141141

src/Mysqli/MysqliImporter.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -183,22 +183,22 @@ protected function getAlterTableSql(\SimpleXMLElement $structure)
183183
/*
184184
Debug.
185185
echo '<pre>';
186-
echo '<br />Non_unique: '.
186+
echo '<br>Non_unique: '.
187187
((string) $newLookup[$name][$i]['Non_unique'] == $oldLookup[$name][$i]->Non_unique ? 'Pass' : 'Fail').' '.
188188
(string) $newLookup[$name][$i]['Non_unique'].' vs '.$oldLookup[$name][$i]->Non_unique;
189-
echo '<br />Column_name: '.
189+
echo '<br>Column_name: '.
190190
((string) $newLookup[$name][$i]['Column_name'] == $oldLookup[$name][$i]->Column_name ? 'Pass' : 'Fail').' '.
191191
(string) $newLookup[$name][$i]['Column_name'].' vs '.$oldLookup[$name][$i]->Column_name;
192-
echo '<br />Seq_in_index: '.
192+
echo '<br>Seq_in_index: '.
193193
((string) $newLookup[$name][$i]['Seq_in_index'] == $oldLookup[$name][$i]->Seq_in_index ? 'Pass' : 'Fail').' '.
194194
(string) $newLookup[$name][$i]['Seq_in_index'].' vs '.$oldLookup[$name][$i]->Seq_in_index;
195-
echo '<br />Collation: '.
195+
echo '<br>Collation: '.
196196
((string) $newLookup[$name][$i]['Collation'] == $oldLookup[$name][$i]->Collation ? 'Pass' : 'Fail').' '.
197197
(string) $newLookup[$name][$i]['Collation'].' vs '.$oldLookup[$name][$i]->Collation;
198-
echo '<br />Index_type: '.
198+
echo '<br>Index_type: '.
199199
((string) $newLookup[$name][$i]['Index_type'] == $oldLookup[$name][$i]->Index_type ? 'Pass' : 'Fail').' '.
200200
(string) $newLookup[$name][$i]['Index_type'].' vs '.$oldLookup[$name][$i]->Index_type;
201-
echo '<br />Same = '.($same ? 'true' : 'false');
201+
echo '<br>Same = '.($same ? 'true' : 'false');
202202
echo '</pre>';
203203
*/
204204

0 commit comments

Comments
 (0)