FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
mailpoet
/
vendor-prefixed
/
doctrine
/
orm
/
src
/
Exception
Edit File: NamedQueryNotFound.php
<?php declare (strict_types=1); namespace MailPoetVendor\Doctrine\ORM\Exception; if (!defined('ABSPATH')) exit; use function sprintf; final class NamedQueryNotFound extends ORMException implements ConfigurationException { public static function fromName(string $name) : self { return new self(sprintf('Could not find a named query by the name "%s"', $name)); } }
Save
Back