plugins/payment/admin_modules/yf_manage_deposit.class.php

Summary

Maintainability
F
2 wks
Test Coverage

File yf_manage_deposit.class.php has 758 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

class yf_manage_deposit
{
    public $payment_api = null;
Severity: Major
Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 1 day to fix

    Method _operation has 125 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function _operation($options = null)
        {
            // import options
            is_array($options) && extract($options, EXTR_PREFIX_ALL | EXTR_REFS, '');
            // class
    Severity: Major
    Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 5 hrs to fix

      Method show has 114 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function show()
          {
              $object = &$this->object;
              $action = &$this->action;
              $filter_name = &$this->filter_name;
      Severity: Major
      Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 4 hrs to fix

        Method view has 81 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function view()
            {
                // check operation
                $operation = $this->_operation();
                // import options
        Severity: Major
        Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 3 hrs to fix

          Method _filter_form_show has 65 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function _filter_form_show($filter, $replace)
              {
                  $order_fields = [
                      'o.operation_id' => 'номер операций',
                      'o.amount' => 'сумма',
          Severity: Major
          Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 2 hrs to fix

            Method _init has 60 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public function _init()
                {
                    // class
                    $this->payment_api = _class('payment_api');
                    $this->manage_payment_lib = module('manage_payment_lib');
            Severity: Major
            Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 2 hrs to fix

              Method _user_message has 45 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  protected function _user_message($options = null)
                  {
                      $url = &$this->url;
                      // import operation
                      is_array($options) && extract($options, EXTR_PREFIX_ALL | EXTR_REFS, '');
              Severity: Minor
              Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 1 hr to fix

                Function _operation has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                Open

                    public function _operation($options = null)
                    {
                        // import options
                        is_array($options) && extract($options, EXTR_PREFIX_ALL | EXTR_REFS, '');
                        // class
                Severity: Minor
                Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 1 hr to fix

                Cognitive Complexity

                Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                A method's cognitive complexity is based on a few simple rules:

                • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                • Code is considered more complex for each "break in the linear flow of the code"
                • Code is considered more complex when "flow breaking structures are nested"

                Further reading

                Function _get_daily_data has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                Open

                    public function _get_daily_data($days = null)
                    {
                        $time = time();
                        $days = $days ?: 60;
                        $min_time = $time - $days * 86400;
                Severity: Minor
                Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 1 hr to fix

                Cognitive Complexity

                Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                A method's cognitive complexity is based on a few simple rules:

                • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                • Code is considered more complex for each "break in the linear flow of the code"
                • Code is considered more complex when "flow breaking structures are nested"

                Further reading

                Method _get_daily_data has 35 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    public function _get_daily_data($days = null)
                    {
                        $time = time();
                        $days = $days ?: 60;
                        $min_time = $time - $days * 86400;
                Severity: Minor
                Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 1 hr to fix

                  Method _update_expired has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      public function _update_expired()
                      {
                          // var
                          $payment_api = _class('payment_api');
                          // update status only in_progress
                  Severity: Minor
                  Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 1 hr to fix

                    Method update_expired has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        public function update_expired()
                        {
                            $url = &$this->url;
                            // command line interface
                            $is_cli = (php_sapi_name() == 'cli');
                    Severity: Minor
                    Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 1 hr to fix

                      Method status has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          public function status()
                          {
                              // check operation
                              $operation = $this->_operation();
                              // import options
                      Severity: Minor
                      Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 1 hr to fix

                        Function _user_message has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                        Open

                            protected function _user_message($options = null)
                            {
                                $url = &$this->url;
                                // import operation
                                is_array($options) && extract($options, EXTR_PREFIX_ALL | EXTR_REFS, '');
                        Severity: Minor
                        Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 1 hr to fix

                        Cognitive Complexity

                        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                        A method's cognitive complexity is based on a few simple rules:

                        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                        • Code is considered more complex for each "break in the linear flow of the code"
                        • Code is considered more complex when "flow breaking structures are nested"

                        Further reading

                        Method _show_filter has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                            public function _show_filter()
                            {
                                $object = &$this->object;
                                $action = &$this->action;
                                $filter_name = &$this->filter_name;
                        Severity: Minor
                        Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 1 hr to fix

                          Function view has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                          Open

                              public function view()
                              {
                                  // check operation
                                  $operation = $this->_operation();
                                  // import options
                          Severity: Minor
                          Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 55 mins to fix

                          Cognitive Complexity

                          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                          A method's cognitive complexity is based on a few simple rules:

                          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                          • Code is considered more complex for each "break in the linear flow of the code"
                          • Code is considered more complex when "flow breaking structures are nested"

                          Further reading

                          Avoid too many return statements within this method.
                          Open

                                      return  $this->_user_message($result);
                          Severity: Major
                          Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 30 mins to fix

                            Avoid too many return statements within this method.
                            Open

                                    return
                                        '<div class="col-md-12">' .
                                            ($data_chart ? '<div class="col-md-6" title="' . t('Транзакции по дням') . '">' . $data_chart . '</div>' : '') .
                                            ($quick_filter ? '<div class="col-md-6 pull-right" title="' . t('Быстрый фильтр') . '">' . $quick_filter . '</div>' : '') .
                                        '</div>' .
                            Severity: Major
                            Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 30 mins to fix

                              Avoid too many return statements within this method.
                              Open

                                                      return '(u.name ' . $like . ' OR u.nick ' . $like . ' OR u.login ' . $like . ' OR u.email ' . $like . ')';
                              Severity: Major
                              Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 30 mins to fix

                                Avoid too many return statements within this method.
                                Open

                                                return  $result;
                                Severity: Major
                                Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 30 mins to fix

                                  Avoid too many return statements within this method.
                                  Open

                                                          return '(o.title ' . $like . ' OR o.options ' . $like . ')';
                                  Severity: Major
                                  Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 30 mins to fix

                                    Avoid too many return statements within this method.
                                    Open

                                                    return  $result;
                                    Severity: Major
                                    Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 30 mins to fix

                                      Avoid too many return statements within this method.
                                      Open

                                                                  return 'o.operation_id = ' . (int) $v;
                                      Severity: Major
                                      Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 30 mins to fix

                                        Avoid too many return statements within this method.
                                        Open

                                                                    return 'o.operation_id IN(' . _es($v) . ')';
                                        Severity: Major
                                        Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 30 mins to fix

                                          Avoid too many return statements within this method.
                                          Open

                                                  return  $result;
                                          Severity: Major
                                          Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 30 mins to fix

                                            Avoid too many return statements within this method.
                                            Open

                                                        return  $this->_user_message($result);
                                            Severity: Major
                                            Found in plugins/payment/admin_modules/yf_manage_deposit.class.php - About 30 mins to fix

                                              Identical blocks of code found in 2 locations. Consider refactoring.
                                              Open

                                                      return form($replace, [
                                                              'filter' => true,
                                                              'selected' => $filter,
                                                          ])
                                                          ->daterange('datetime_start', [
                                              Severity: Major
                                              Found in plugins/payment/admin_modules/yf_manage_deposit.class.php and 1 other location - About 2 days to fix
                                              plugins/payment/admin_modules/yf_manage_payout.class.php on lines 180..224

                                              Duplicated Code

                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                              Tuning

                                              This issue has a mass of 471.

                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                              Refactorings

                                              Further Reading

                                              Identical blocks of code found in 2 locations. Consider refactoring.
                                              Open

                                                      $result = table($sql, [
                                                              'filter' => $filter,
                                                              'filter_params' => [
                                                                  'status_id' => function ($a) use ($payment_status_in_progress_id) {
                                                                      $result = null;
                                              Severity: Major
                                              Found in plugins/payment/admin_modules/yf_manage_deposit.class.php and 1 other location - About 2 days to fix
                                              plugins/payment/admin_modules/yf_manage_payout.class.php on lines 419..463

                                              Duplicated Code

                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                              Tuning

                                              This issue has a mass of 449.

                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                              Refactorings

                                              Further Reading

                                              Similar blocks of code found in 2 locations. Consider refactoring.
                                              Open

                                                  public function _get_daily_data($days = null)
                                                  {
                                                      $time = time();
                                                      $days = $days ?: 60;
                                                      $min_time = $time - $days * 86400;
                                              Severity: Major
                                              Found in plugins/payment/admin_modules/yf_manage_deposit.class.php and 1 other location - About 1 day to fix
                                              plugins/payment/admin_modules/yf_manage_payout.class.php on lines 315..354

                                              Duplicated Code

                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                              Tuning

                                              This issue has a mass of 317.

                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                              Refactorings

                                              Further Reading

                                              Similar blocks of code found in 2 locations. Consider refactoring.
                                              Open

                                                  public function update_expired()
                                                  {
                                                      $url = &$this->url;
                                                      // command line interface
                                                      $is_cli = (php_sapi_name() == 'cli');
                                              Severity: Major
                                              Found in plugins/payment/admin_modules/yf_manage_deposit.class.php and 1 other location - About 1 day to fix
                                              plugins/payment/admin_modules/yf_manage_payout.class.php on lines 1937..1971

                                              Duplicated Code

                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                              Tuning

                                              This issue has a mass of 300.

                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                              Refactorings

                                              Further Reading

                                              Similar blocks of code found in 2 locations. Consider refactoring.
                                              Open

                                                          $content = table($response, ['no_total' => true])
                                                              ->text('datetime', 'дата')
                                                              ->func('data', function ($value, $extra, $row) use ($_provider_name, $_providers_user__by_name) {
                                                                  // message
                                                                  $message = @$row['status_message'] ?: @$row['data']['message'];
                                              Severity: Major
                                              Found in plugins/payment/admin_modules/yf_manage_deposit.class.php and 1 other location - About 1 day to fix
                                              plugins/payment/admin_modules/yf_manage_payout.class.php on lines 1073..1090

                                              Duplicated Code

                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                              Tuning

                                              This issue has a mass of 265.

                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                              Refactorings

                                              Further Reading

                                              Similar blocks of code found in 2 locations. Consider refactoring.
                                              Open

                                                  public function _show_quick_filter()
                                                  {
                                                      $a = [];
                                                      $status_names = from('payment_status')->get_2d('status_id, title');
                                                      $count_by_status = select(['status_id', 'COUNT(*) AS num'])->from('payment_operation')
                                              Severity: Major
                                              Found in plugins/payment/admin_modules/yf_manage_deposit.class.php and 1 other location - About 1 day to fix
                                              plugins/payment/admin_modules/yf_manage_payout.class.php on lines 287..310

                                              Duplicated Code

                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                              Tuning

                                              This issue has a mass of 249.

                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                              Refactorings

                                              Further Reading

                                              Identical blocks of code found in 5 locations. Consider refactoring.
                                              Open

                                                  public function _show_filter()
                                                  {
                                                      $object = &$this->object;
                                                      $action = &$this->action;
                                                      $filter_name = &$this->filter_name;
                                              Severity: Major
                                              Found in plugins/payment/admin_modules/yf_manage_deposit.class.php and 4 other locations - About 4 hrs to fix
                                              plugins/payment/admin_modules/yf_manage_currency.class.php on lines 96..126
                                              plugins/payment/admin_modules/yf_manage_payment_operation.class.php on lines 142..172
                                              plugins/payment/admin_modules/yf_manage_payout.class.php on lines 228..258
                                              plugins/payment/admin_modules/yf_manage_transfer.class.php on lines 167..197

                                              Duplicated Code

                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                              Tuning

                                              This issue has a mass of 181.

                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                              Refactorings

                                              Further Reading

                                              Similar blocks of code found in 2 locations. Consider refactoring.
                                              Open

                                                  public function filter_save()
                                                  {
                                                      $object = &$this->object;
                                                      $id = &$this->id;
                                                      switch ($id) {
                                              Severity: Major
                                              Found in plugins/payment/admin_modules/yf_manage_deposit.class.php and 1 other location - About 2 hrs to fix
                                              plugins/payment/admin_modules/yf_manage_payout.class.php on lines 261..284

                                              Duplicated Code

                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                              Tuning

                                              This issue has a mass of 121.

                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                              Refactorings

                                              Further Reading

                                              Identical blocks of code found in 5 locations. Consider refactoring.
                                              Open

                                                  public function _url($name, $replace = null)
                                                  {
                                                      $url = &$this->url;
                                                      $result = null;
                                                      if (empty($url[$name])) {
                                              Severity: Major
                                              Found in plugins/payment/admin_modules/yf_manage_deposit.class.php and 4 other locations - About 1 hr to fix
                                              plugins/payment/admin_modules/yf_manage_payment_operation.class.php on lines 64..76
                                              plugins/payment/admin_modules/yf_manage_payment_yandexmoney.class.php on lines 62..74
                                              plugins/payment/admin_modules/yf_manage_payout.class.php on lines 140..152
                                              plugins/payment/admin_modules/yf_manage_transfer.class.php on lines 110..122

                                              Duplicated Code

                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                              Tuning

                                              This issue has a mass of 112.

                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                              Refactorings

                                              Further Reading

                                              Identical blocks of code found in 2 locations. Consider refactoring.
                                              Open

                                                      $db = db()->select(
                                                          'o.operation_id',
                                                          'o.account_id',
                                                          'o.provider_id',
                                                          'o.options',
                                              Severity: Major
                                              Found in plugins/payment/admin_modules/yf_manage_deposit.class.php and 1 other location - About 1 hr to fix
                                              plugins/payment/admin_modules/yf_manage_payout.class.php on lines 394..417

                                              Duplicated Code

                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                              Tuning

                                              This issue has a mass of 108.

                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                              Refactorings

                                              Further Reading

                                              There are no issues that match your filters.

                                              Category
                                              Status