You are here

public function FrontendEnvironmentBase::defaultConfiguration in Build Hooks 8.2

Same name and namespace in other branches
  1. 3.x src/Plugin/FrontendEnvironmentBase.php \Drupal\build_hooks\Plugin\FrontendEnvironmentBase::defaultConfiguration()

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides ConfigurableInterface::defaultConfiguration

4 calls to FrontendEnvironmentBase::defaultConfiguration()
CircleV2::defaultConfiguration in modules/build_hooks_circleci/src/Plugin/FrontendEnvironment/CircleV2.php
Gets default configuration for this plugin.
FrontendEnvironmentBase::setConfiguration in src/Plugin/FrontendEnvironmentBase.php
Sets the configuration for this plugin instance.
GenericFrontendEnvironment::defaultConfiguration in src/Plugin/FrontendEnvironment/GenericFrontendEnvironment.php
Gets default configuration for this plugin.
TestEnvironment::defaultConfiguration in tests/modules/build_hooks_test/src/Plugin/FrontendEnvironment/TestEnvironment.php
Gets default configuration for this plugin.
3 methods override FrontendEnvironmentBase::defaultConfiguration()
CircleV2::defaultConfiguration in modules/build_hooks_circleci/src/Plugin/FrontendEnvironment/CircleV2.php
Gets default configuration for this plugin.
GenericFrontendEnvironment::defaultConfiguration in src/Plugin/FrontendEnvironment/GenericFrontendEnvironment.php
Gets default configuration for this plugin.
TestEnvironment::defaultConfiguration in tests/modules/build_hooks_test/src/Plugin/FrontendEnvironment/TestEnvironment.php
Gets default configuration for this plugin.

File

src/Plugin/FrontendEnvironmentBase.php, line 81

Class

FrontendEnvironmentBase
Base class for Frontend environment plugins.

Namespace

Drupal\build_hooks\Plugin

Code

public function defaultConfiguration() {
  return [];
}