| Total Complexity | 4 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | abstract class Step1BaseImporter extends BaseImporter |
||
| 19 | { |
||
| 20 | public function beforeSql($method) |
||
| 21 | { |
||
| 22 | if (method_exists($this, $method)) |
||
| 23 | { |
||
| 24 | $this->$method(); |
||
| 25 | } |
||
| 26 | } |
||
| 27 | |||
| 28 | public function doSpecialTable($table, $params = null) |
||
| 29 | { |
||
| 30 | return $params; |
||
| 31 | } |
||
| 32 | |||
| 33 | public function fixTexts($row) |
||
| 36 | } |
||
| 37 | } |
||
| 38 |