You are here

public function StateInterface::get in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/State/StateInterface.php \Drupal\Core\State\StateInterface::get()

Returns the stored value for a given key.

Parameters

string $key: The key of the data to retrieve.

mixed $default: The default value to use if the key is not found.

Return value

mixed The stored value, or NULL if no value exists.

1 method overrides StateInterface::get()
State::get in core/lib/Drupal/Core/State/State.php
Returns the stored value for a given key.

File

core/lib/Drupal/Core/State/StateInterface.php, line 23

Class

StateInterface
Defines the interface for the state system.

Namespace

Drupal\Core\State

Code

public function get($key, $default = NULL);