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\bootstrapCode
public function __sleep() {
// Only store the theme name.
return [
'name',
];
}