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 = 13-13 lines in 3 locations

backend/protected/modules/product/models/behaviors/BFacetedParameterBehavior.php 1 location

@@ 79-91 (lines=13) @@
76
  /**
77
   * @return string
78
   */
79
  private function reindex()
80
  {
81
    $runner = new CConsoleCommandRunner();
82
    $runner->commands = array(
83
      'indexer' => array(
84
        'class' => 'frontend.commands.IndexerCommand',
85
      ),
86
    );
87
88
    ob_start();
89
    $runner->run(array('yiic', 'indexer', 'refresh'));
90
    return ob_get_clean();
91
  }
92
}

protected/migrations/demo/m010102_000007_product_content.php 1 location

@@ 102-114 (lines=13) @@
99
		return true;
100
	}
101
102
  private function reindex()
103
  {
104
    $runner = new CConsoleCommandRunner();
105
    $runner->commands = array(
106
      'indexer' => array(
107
        'class' => 'frontend.commands.IndexerCommand',
108
      ),
109
    );
110
111
    ob_start();
112
    $runner->run(array('yiic', 'indexer', 'refresh'));
113
    return ob_get_clean();
114
  }
115
}

protected/commands/ProductsImportCommand.php 1 location

@@ 82-94 (lines=13) @@
79
    }
80
  }
81
82
  private function reindex()
83
  {
84
    $runner = new CConsoleCommandRunner();
85
    $runner->commands = array(
86
      'indexer' => array(
87
        'class' => 'frontend.commands.IndexerCommand',
88
      ),
89
    );
90
91
    ob_start();
92
    $runner->run(array('yiic', 'indexer', 'refresh'));
93
    return ob_get_clean();
94
  }
95
}