Completed
Push — Leksat-patch-1 ( 31c1c0...66f278 )
by Jonathan
01:23
created
src/Drupal/DrupalExtension/Context/RawDrupalContext.php 2 patches
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -184,6 +184,7 @@  discard block
 block discarded – undo
184 184
   /**
185 185
    * Get active Drupal Driver.
186 186
    *
187
+   * @param string $name
187 188
    * @return \Drupal\Driver\DrupalDriver
188 189
    */
189 190
   public function getDriver($name = NULL) {
@@ -308,7 +309,7 @@  discard block
 block discarded – undo
308 309
   /**
309 310
    * Dispatch scope hooks.
310 311
    *
311
-   * @param string $scope
312
+   * @param string $scopeType
312 313
    *   The entity scope to dispatch.
313 314
    * @param \stdClass $entity
314 315
    *   The entity.
Please login to merge, or discard this patch.
Unused Use Statements   -6 removed lines patch added patch discarded remove patch
@@ -3,21 +3,15 @@
 block discarded – undo
3 3
 namespace Drupal\DrupalExtension\Context;
4 4
 
5 5
 use Behat\MinkExtension\Context\RawMinkContext;
6
-use Behat\Mink\Exception\DriverException;
7 6
 use Behat\Testwork\Hook\HookDispatcher;
8 7
 use Behat\Behat\Context\Environment\InitializedContextEnvironment;
9
-
10 8
 use Drupal\DrupalDriverManager;
11 9
 use Drupal\DrupalExtension\DrupalParametersTrait;
12 10
 use Drupal\DrupalExtension\Manager\DrupalAuthenticationManagerInterface;
13 11
 use Drupal\DrupalExtension\Manager\DrupalUserManagerInterface;
14
-
15
-use Drupal\DrupalExtension\Hook\Scope\AfterLanguageEnableScope;
16 12
 use Drupal\DrupalExtension\Hook\Scope\AfterNodeCreateScope;
17 13
 use Drupal\DrupalExtension\Hook\Scope\AfterTermCreateScope;
18 14
 use Drupal\DrupalExtension\Hook\Scope\AfterUserCreateScope;
19
-use Drupal\DrupalExtension\Hook\Scope\BaseEntityScope;
20
-use Drupal\DrupalExtension\Hook\Scope\BeforeLanguageEnableScope;
21 15
 use Drupal\DrupalExtension\Hook\Scope\BeforeNodeCreateScope;
22 16
 use Drupal\DrupalExtension\Hook\Scope\BeforeUserCreateScope;
23 17
 use Drupal\DrupalExtension\Hook\Scope\BeforeTermCreateScope;
Please login to merge, or discard this patch.