@@ -11,11 +11,11 @@ |
||
| 11 | 11 | { |
| 12 | 12 | $gtid_count = $this->binaryDataReader->readUInt32(); |
| 13 | 13 | $gtid_list = []; |
| 14 | - for($i=0;$i < $gtid_count;$i++) { |
|
| 14 | + for ($i = 0; $i < $gtid_count; $i++) { |
|
| 15 | 15 | $domainId = $this->binaryDataReader->readUInt32(); |
| 16 | 16 | $serverId = $this->binaryDataReader->readUInt32(); |
| 17 | 17 | $seq = $this->binaryDataReader->readUInt64(); |
| 18 | - array_push($gtid_list,$domainId . '-' . $serverId . '-' . $seq); |
|
| 18 | + array_push($gtid_list, $domainId . '-' . $serverId . '-' . $seq); |
|
| 19 | 19 | } |
| 20 | 20 | $mariaDbGtidList = implode(',', $gtid_list); |
| 21 | 21 | |