for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DoctrineTest\InstantiatorTestAsset;
use ArrayObject;
use BadMethodCallException;
/**
* A simple asset for an abstract class
*/
class UnserializeExceptionArrayObjectAsset extends ArrayObject
{
* {@inheritDoc}
public function __wakeup()
throw new BadMethodCallException();
}