| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 12 | class Oracle122Platform extends OraclePlatform |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * {@inheritDoc} |
||
| 16 | */ |
||
| 17 | public function fixSchemaElementName($schemaElementName) |
||
| 18 | { |
||
| 19 | if (strlen($schemaElementName) > 128) { |
||
| 20 | // Trim it |
||
| 21 | return substr($schemaElementName, 0, 128); |
||
| 22 | } |
||
| 23 | |||
| 24 | return $schemaElementName; |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * {@inheritDoc} |
||
| 29 | */ |
||
| 30 | public function getMaxIdentifierLength() |
||
| 33 | } |
||
| 34 | } |