public Container::__sleep()
File
- core/lib/Drupal/Core/DependencyInjection/Container.php, line 28
Class
- Container
- Extends the Drupal container to set the service ID on the created object.
Namespace
Drupal\Core\DependencyInjection
Code
1 2 3 4 | public function __sleep() { assert(FALSE, 'The container was serialized.' ); return array_keys (get_object_vars( $this )); } |
Please login to continue.