Skip to content
Snippets Groups Projects

Allow custom messages in DeprecatedServicePropertyTrait

Closes #3519400

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • nicxvan
  • shalini jha added 67 commits

    added 67 commits

    Compare with previous version

  • Stephen Mustgrave resolved all threads

    resolved all threads

  • 18 18 }
    19 19
    20 20 if (isset($this->deprecatedProperties[$name])) {
    21 $service_name = $this->deprecatedProperties[$name];
    22 $class_name = static::class;
    21 if (is_string($this->deprecatedProperties[$name])) {
    22 $service_name = $this->deprecatedProperties[$name];
    23 $class_name = static::class;
    24 $next_major_version = intval(ceil((float) \Drupal::VERSION)) . '.0.0';
    Please register or sign in to reply
    Loading