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

Breadcrumb

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

function LazyProxyTrait::resetLazyObject

Return value

bool Returns false when the object cannot be reset, ie when it's not a lazy object

File

vendor/symfony/var-exporter/LazyProxyTrait.php, line 92

Class

LazyProxyTrait

Namespace

Symfony\Component\VarExporter

Code

public function resetLazyObject() : bool {
    if (!isset($this->lazyObjectState) || Registry::$noInitializerState === $this->lazyObjectState->initializer) {
        return false;
    }
    unset($this->lazyObjectState->realInstance);
    return true;
}

API Navigation

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