public function ViewUI::__call

Passes through all unknown calls onto the storage object.

File

drupal/core/modules/views_ui/lib/Drupal/views_ui/ViewUI.php, line 785
Definition of Drupal\views_ui\ViewUI.

Class

ViewUI
Stores UI related temporary settings.

Namespace

Drupal\views_ui

Code

public function __call($method, $args) {
  return call_user_func_array(array(
    $this->storage,
    $method,
  ), $args);
}