Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. DeprecatedArray.php

function DeprecatedArray::offsetExists

File

core/lib/Drupal/Component/Utility/DeprecatedArray.php, line 33

Class

DeprecatedArray
An array that triggers a deprecation warning when accessed.

Namespace

Drupal\Component\Utility

Code

public function offsetExists($offset) : bool {
    @trigger_error($this->message, E_USER_DEPRECATED);
    return parent::offsetExists($offset);
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal