You are here

public function Theme::__sleep in Express 8

Serialization method.

File

themes/contrib/bootstrap/src/Theme.php, line 204
Contains \Drupal\bootstrap.

Class

Theme
Defines a theme object.

Namespace

Drupal\bootstrap

Code

public function __sleep() {

  // Only store the theme name.
  return [
    'name',
  ];
}