mirror of
https://github.com/doctrine/orm.git
synced 2026-04-03 04:42:24 +02:00
It will make fuzzy matchers more efficient, and configuration files more readable. - lib/Doctrine/ORM becomes just src - tests/Doctrine/ becomes just tests
14 lines
262 B
PHP
14 lines
262 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Doctrine\ORM\Cache\Exception;
|
|
|
|
final class MetadataCacheNotConfigured extends CacheException
|
|
{
|
|
public static function create(): self
|
|
{
|
|
return new self('Class Metadata Cache is not configured.');
|
|
}
|
|
}
|