ObjectSerialization.php
Same filename in other branches
Namespace
Drupal\Core\TestFile
-
core/
lib/ Drupal/ Core/ Test/ ObjectSerialization.php
View source
<?php
namespace Drupal\Core\Test;
/**
* Object to test that security issues around serialization.
*/
class ObjectSerialization {
/**
* ObjectSerialization constructor.
*/
public function __construct() {
throw new \Exception('This object should never be constructed');
}
/**
* ObjectSerialization destructor.
*/
public function __destruct() {
throw new \Exception('This object should never be destructed');
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
ObjectSerialization | Object to test that security issues around serialization. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.