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;
use BadMethodCallException;
/**
* Class StdClassObject.
*/
class StdClassObject extends ObjectValue
{
* {@inheritdoc}
public function hash(): string
throw new BadMethodCallException('Unable to hash this class.');
}
public function serialize()
throw new BadMethodCallException('Unable to serialize this class.');
public function unserialize($serialized)
throw new BadMethodCallException('Unable to unserialize this class.');