Code Duplication    Length = 7-7 lines in 2 locations

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

@@ 183-189 (lines=7) @@
180
     *
181
     * @return string
182
     */
183
    private function getTableName(AbstractZohoDao $dao)
184
    {
185
        $tableName = $this->prefix.$dao->getPluralModuleName();
186
        $tableName = s($tableName)->upperCamelize()->underscored();
187
188
        return (string) $tableName;
189
    }
190
191
192
    /**