src/ZohoDatabaseCopier.php 1 location
|
@@ 317-323 (lines=7) @@
|
| 314 |
|
* |
| 315 |
|
* @return string |
| 316 |
|
*/ |
| 317 |
|
private function getTableName(AbstractZohoDao $dao) |
| 318 |
|
{ |
| 319 |
|
$tableName = $this->prefix.$dao->getPluralModuleName(); |
| 320 |
|
$tableName = s($tableName)->upperCamelize()->underscored(); |
| 321 |
|
|
| 322 |
|
return (string) $tableName; |
| 323 |
|
} |
| 324 |
|
} |
| 325 |
|
|
src/ZohoDatabaseSyncZoho.php 1 location
|
@@ 225-231 (lines=7) @@
|
| 222 |
|
* |
| 223 |
|
* @return string |
| 224 |
|
*/ |
| 225 |
|
private function getTableName(AbstractZohoDao $dao) |
| 226 |
|
{ |
| 227 |
|
$tableName = $this->prefix.$dao->getPluralModuleName(); |
| 228 |
|
$tableName = s($tableName)->upperCamelize()->underscored(); |
| 229 |
|
|
| 230 |
|
return (string) $tableName; |
| 231 |
|
} |
| 232 |
|
|
| 233 |
|
|
| 234 |
|
/** |