Skip to content

Commit 4ab4876

Browse files
authored
Fix CS
1 parent c4a9415 commit 4ab4876

File tree

1 file changed

+3
-3
lines changed
  • app/code/core/Mage/ImportExport/Model/Resource/Helper

1 file changed

+3
-3
lines changed

app/code/core/Mage/ImportExport/Model/Resource/Helper/Mysql4.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class Mage_ImportExport_Model_Resource_Helper_Mysql4 extends Mage_Core_Model_Res
2626
*/
2727
public const DB_MAX_PACKET_SIZE = 1048576; // Maximal packet length by default in MySQL
2828
public const DB_MAX_PACKET_COEFFICIENT = 0.85; // The coefficient of useful data from maximum packet length
29-
29+
3030
/**
3131
* Semaphore to disable schema stats only once
3232
*
@@ -45,7 +45,7 @@ public function getMaxDataSize()
4545
$maxPacket = empty($maxPacketData['Value']) ? self::DB_MAX_PACKET_SIZE : $maxPacketData['Value'];
4646
return floor($maxPacket * self::DB_MAX_PACKET_COEFFICIENT);
4747
}
48-
48+
4949
/**
5050
* Returns next autoincrement value for a table
5151
*
@@ -67,7 +67,7 @@ public function getNextAutoincrement($tableName)
6767
}
6868
return $entityStatus['Auto_increment'];
6969
}
70-
70+
7171
/**
7272
* Set information_schema_stats_expiry to 0 if not already set.
7373
*/

0 commit comments

Comments
 (0)