for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace drupol\valuewrapper\Object;
/**
* Class StdClassObject
*/
class StdClassObject extends ObjectValue
{
* {@inheritdoc}
public function serialize() {
throw new \BadMethodCallException('Unable to serialize this class.');
}
public function unserialize($serialized) {
throw new \BadMethodCallException('Unable to unserialize this class.');