Skip to content
Snippets Groups Projects

#3274419 Makes BaseFieldOverride inherit the internal property from the base field.

Closed #3274419 Makes BaseFieldOverride inherit the internal property from the base field.
Closed marios anagnostopoulos requested to merge issue/drupal-3274419:3274419-10.x into 9.5.x
1 file
+ 6
2
Compare changes
  • Side-by-side
  • Inline
  • 88dceab0
    Issue #3250683 by beatrizrodrigues, Tauany Bueno, ravi.shankar, joachim,... · 88dceab0
    Alex Pott authored
    Issue #3250683 by beatrizrodrigues, Tauany Bueno, ravi.shankar, joachim, quietone: MigrateException documentation for class properties should link to where values are defined
@@ -13,18 +13,22 @@ class MigrateException extends \Exception {
/**
* The level of the error being reported.
*
* The value is a Migration::MESSAGE_* constant.
* The value is a MigrationInterface::MESSAGE_* constant.
*
* @var int
*
* @see \Drupal\migrate\Plugin\MigrationInterface
*/
protected $level;
/**
* The status to record in the map table for the current item.
*
* The value is a MigrateMap::STATUS_* constant.
* The value is a MigrateIdMapInterface::STATUS_* constant.
*
* @var int
*
* @see \Drupal\migrate\Plugin\MigrateIdMapInterface
*/
protected $status;
Loading