Completed
Push — master ( 1148b6...9556e0 )
by Jonathan
18s queued 10s
created
src/Drupal/Driver/Cores/Drupal6.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
   /**
288 288
    * Expands properties on the given entity object to the expected structure.
289 289
    *
290
-   * @param object $entity
290
+   * @param \stdClass $entity
291 291
    *   The entity object.
292 292
    */
293 293
   protected function expandEntityProperties(\stdClass $entity) {
@@ -431,6 +431,7 @@  discard block
 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 = []) {
436 437
     return parent::expandEntityFields($entity_type, $entity);
Please login to merge, or discard this patch.
src/Drupal/Driver/Cores/Drupal8.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -380,7 +380,7 @@  discard block
 block discarded – undo
380 380
    *
381 381
    * @param string $entity_type
382 382
    *   The entity type for which to return the field types.
383
-   * @param object $entity
383
+   * @param \stdClass $entity
384 384
    *   Entity object.
385 385
    * @param array $base_fields
386 386
    *   Base fields to be expanded in addition to user defined fields.
@@ -418,6 +418,7 @@  discard block
 block discarded – undo
418 418
 
419 419
   /**
420 420
    * {@inheritdoc}
421
+   * @param string $entity_type
421 422
    */
422 423
   public function isBaseField($entity_type, $field_name) {
423 424
     /** @var \Drupal\Core\Entity\EntityFieldManagerInterface $entity_field_manager */
Please login to merge, or discard this patch.