Beispiel #1
0
 /**
  * The magic wakeup method will be called by PHP's runtime environment when
  * a serialized instance of this class was unserialized. This implementation
  * of the wakeup method will register this object in the the global class
  * context.
  *
  * @return void
  * @since  0.10.0
  */
 public function __wakeup()
 {
     parent::__wakeup();
     $this->context->registerClass($this);
 }
Beispiel #2
0
 /**
  * The magic wakeup method will be called by PHP's runtime environment when
  * a serialized instance of this class was unserialized. This implementation
  * of the wakeup method will register this object in the the global class
  * context.
  *
  * @return void
  * @since  0.10.0
  */
 public function __wakeup()
 {
     parent::__wakeup();
     $this->context->registerInterface($this);
 }