You are here

public function DebuggerAwareTrait::debugger in Acquia Purge 8

3 calls to DebuggerAwareTrait::debugger()
AcquiaCloudPurger::getGlobalOptions in src/Plugin/Purge/Purger/AcquiaCloudPurger.php
Retrieve request options used for all of Acquia Purge's balancer requests.
AcquiaPlatformCdnPurger::initializeBackend in src/Plugin/Purge/Purger/AcquiaPlatformCdnPurger.php
Lazy load the underlying backend based on PlatformInfo CDN configuration.
FastlyBackend::fastlyRequestOpt in src/AcquiaPlatformCdn/FastlyBackend.php
Get a Guzzle option array prepared for Fastly API calls.

File

src/Plugin/Purge/Purger/DebuggerAwareTrait.php, line 23

Class

DebuggerAwareTrait
Provides a Acquia purger which is debugging aware.

Namespace

Drupal\acquia_purge\Plugin\Purge\Purger

Code

public function debugger() {
  if (is_null($this->debuggerInstance)) {
    $this->debuggerInstance = new Debugger($this
      ->logger());
  }
  return $this->debuggerInstance;
}