Completed
Pull Request — master (#198)
by Greg
01:32
created
src/Drupal/Driver/DrushDriver.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 
10 10
 use Drupal\Component\Utility\Random;
11 11
 use Drupal\Driver\Exception\BootstrapException;
12
-
13 12
 use Symfony\Component\Process\Process;
14 13
 
15 14
 /**
Please login to merge, or discard this patch.
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -176,6 +176,7 @@
 block discarded – undo
176 176
 
177 177
   /**
178 178
    * Parse user id from drush user-information output.
179
+   * @param string $info
179 180
    */
180 181
   protected function parseUserId($info) {
181 182
     // Find the row containing "User ID : xxx".
Please login to merge, or discard this patch.
src/Drupal/Driver/Cores/Drupal8.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -388,6 +388,7 @@
 block discarded – undo
388 388
 
389 389
   /**
390 390
    * {@inheritdoc}
391
+   * @param string $entity_type
391 392
    */
392 393
   public function isBaseField($entity_type, $field_name) {
393 394
     $fields = \Drupal::entityManager()->getFieldStorageDefinitions($entity_type);
Please login to merge, or discard this patch.
src/Drupal/Driver/Cores/Drupal6.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -431,6 +431,7 @@
 block discarded – undo
431 431
 
432 432
   /**
433 433
    * {@inheritdoc}
434
+   * @param string $entity_type
434 435
    */
435 436
   protected function expandEntityFields($entity_type, \stdClass $entity, array $base_fields = array()) {
436 437
     return parent::expandEntityFields($entity_type, $entity);
Please login to merge, or discard this patch.
src/Drupal/Driver/DrupalDriver.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Drupal\Driver;
4 4
 
5 5
 use Drupal\Driver\Exception\BootstrapException;
6
-
7 6
 use Behat\Behat\Tester\Exception\PendingException;
8 7
 
9 8
 /**
Please login to merge, or discard this patch.