GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Code Duplication    Length = 7-7 lines in 2 locations

protected/share/helpers/Arr.php 2 locations

@@ 497-503 (lines=7) @@
494
495
    if( !$flipSort )
496
    {
497
      for($columnIndex = 0; $columnIndex < $countColumns; $columnIndex++)
498
      {
499
        for($rowIndex = 0; $rowIndex < $rowsCount; $rowIndex++)
500
        {
501
          $arrayProcess($columnIndex, $rowIndex);
502
        }
503
      }
504
    }
505
    else
506
    {
@@ 507-513 (lines=7) @@
504
    }
505
    else
506
    {
507
      for($rowIndex = 0; $rowIndex < $rowsCount; $rowIndex++)
508
      {
509
        for($columnIndex = 0; $columnIndex < $countColumns; $columnIndex++)
510
        {
511
          $arrayProcess($columnIndex, $rowIndex);
512
        }
513
      }
514
    }
515
516
    return $outArray;