You are here

public function Drupal8::stateGet in Realistic Dummy Content 3.x

Same name and namespace in other branches
  1. 8.2 api/src/Framework/Drupal8.php \Drupal\realistic_dummy_content_api\Framework\Drupal8::stateGet()
  2. 7.2 api/src/Framework/Drupal8.php \Drupal\realistic_dummy_content_api\Framework\Drupal8::stateGet()

Gets state information.

Overrides Framework::stateGet

File

api/src/Framework/Drupal8.php, line 233

Class

Drupal8
Drupal 8-specific code.

Namespace

Drupal\realistic_dummy_content_api\Framework

Code

public function stateGet($name, $default = NULL) {

  // @phpstan-ignore-next-line
  return \Drupal::state()
    ->get($name, $default);
}