Code Duplication    Length = 2-2 lines in 2 locations

lib/BaseException.php 1 location

@@ 215-216 (lines=2) @@
212
            $o .= '<div class="atk-effect-info">'.$e->getMyFile().':'.$e->getMyLine().'</div>';
213
        }
214
215
        if (method_exists($e, 'getMyTrace')) {
216
            $o .= $this->backtrace(3, $e->getMyTrace());
217
        } else {
218
            $o .= $this->backtrace(@$e->shift, $e->getTrace());
219
        }

lib/Logger.php 1 location

@@ 396-397 (lines=2) @@
393
            $o .= '<p><font color=blue>'.$e->getMyFile().':'.$e->getMyLine().'</font></p>';
394
        }
395
396
        if (method_exists($e, 'getMyTrace')) {
397
            $o .= $this->backtrace(3, $e->getMyTrace());
398
        } else {
399
            $o .= $this->backtrace(@$e->shift, $e->getTrace());
400
        }