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 = 8-8 lines in 2 locations

src/DFExtension/Context/PanelsInPlaceContext.behat.inc 2 locations

@@ 126-133 (lines=8) @@
123
   * @Then I should see the :plugin_id plugin
124
   * @Then I should see the :plugin_id plugin in the :category category
125
   */
126
  public function assertBlockPluginExists($plugin_id, $category = NULL) {
127
    return $this->assertSession()
128
      ->elementExists(
129
        'css',
130
        '.ipe-block-plugin a[data-plugin-id="' . $plugin_id . '"]',
131
        $category ? $this->openCategory($category) : $this->getActiveTab()
132
      );
133
  }
134
135
  /**
136
   * Asserts that a particular block plugin is not available.
@@ 146-153 (lines=8) @@
143
   * @Then I should not see the :plugin_id plugin
144
   * @Then I should not see the :plugin_id plugin in the :category category
145
   */
146
  public function assertBlockPluginNotExists($plugin_id, $category = NULL) {
147
    $this->assertSession()
148
      ->elementNotExists(
149
        'css',
150
        '.ipe-block-plugin a[data-plugin-id="' . $plugin_id . '"]',
151
        $category ? $this->openCategory($category) : $this->getActiveTab()
152
      );
153
  }
154
155
  /**
156
   * Instantiates a block plugin.