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

Breadcrumb

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

function ExcludeList::addStaticProperty

File

vendor/sebastian/global-state/src/ExcludeList.php, line 50

Class

ExcludeList

Namespace

SebastianBergmann\GlobalState

Code

public function addStaticProperty(string $className, string $propertyName) : void {
    if (!isset($this->staticProperties[$className])) {
        $this->staticProperties[$className] = [];
    }
    $this->staticProperties[$className][$propertyName] = true;
}
RSS feed
Powered by Drupal