for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Cache;
class NonCacheableEntity extends \Exception implements CacheException
{
public static function fromEntity(string $entityName) : self
return new self(sprintf(
'Entity "%s" not configured as part of the second-level cache.',
$entityName
));
}