comparison core/modules/migrate/src/Plugin/Migration.php @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents a9cd425dd02b
children
comparison
equal deleted inserted replaced
4:a9cd425dd02b 5:12f9dff5fda9
325 * more specific getters instead. 325 * more specific getters instead.
326 * 326 *
327 * @see https://www.drupal.org/node/2873795 327 * @see https://www.drupal.org/node/2873795
328 */ 328 */
329 public function get($property) { 329 public function get($property) {
330 @trigger_error('\Drupal\migrate\Plugin\Migration::get() is deprecated in Drupal 8.1.x, will be removed before Drupal 9.0.x. Use more specific getters instead. See https://www.drupal.org/node/2873795', E_USER_DEPRECATED);
330 return isset($this->$property) ? $this->$property : NULL; 331 return isset($this->$property) ? $this->$property : NULL;
331 } 332 }
332 333
333 /** 334 /**
334 * Retrieves the ID map plugin. 335 * Retrieves the ID map plugin.