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

@@ 189-195 (lines=7) @@
186
     *
187
     * @return string
188
     */
189
    private function getTableName(AbstractZohoDao $dao)
190
    {
191
        $tableName = $this->prefix.$dao->getPluralModuleName();
192
        $tableName = s($tableName)->upperCamelize()->underscored();
193
194
        return (string) $tableName;
195
    }
196
197
198
    /**