Sindbad~EG File Manager
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Exception;
use function implode;
use function sprintf;
final class MultipleSelectorsFoundException extends ORMException
{
public const MULTIPLE_SELECTORS_FOUND_EXCEPTION = 'Multiple selectors found: %s. Please select only one.';
/** @param string[] $selectors */
public static function create(array $selectors): self
{
return new self(
sprintf(
self::MULTIPLE_SELECTORS_FOUND_EXCEPTION,
implode(', ', $selectors)
)
);
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists