for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace ProxyManagerTestAsset;
use ProxyManager\Proxy\NullObjectInterface;
/**
* Base test class to catch instantiations of null object
*
* @author Vincent Blanchon <[email protected]>
* @license MIT
*/
class NullObjectMock implements NullObjectInterface
{
* @return static
public static function staticProxyConstructor() : self
return new static();
}