Skip to content

Commit

Permalink
Merge pull request #40 from mistermoper/fb-core-state-get
Browse files Browse the repository at this point in the history
Return value obtained in State::get
  • Loading branch information
bircher authored Jun 20, 2019
2 parents 0d6cc3f + 2d82030 commit 6f2c8f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Driver/Objects/Drupal8/State.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class State implements StateInterface {
* {@inheritdoc}
*/
public function get($key, $default = NULL) {
\Drupal::state()->get($key, $default);
return \Drupal::state()->get($key, $default);
}

/**
Expand Down

0 comments on commit 6f2c8f0

Please sign in to comment.