vendor/doctrine/orm/src/Persisters/Exception/InvalidOrientation.php line 9

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Doctrine\ORM\Persisters\Exception;
  4. use Doctrine\ORM\Exception\PersisterException;
  5. class InvalidOrientation extends PersisterException
  6. {
  7.     public static function fromClassNameAndField(string $classNamestring $field): self
  8.     {
  9.         return new self('Invalid order by orientation specified for ' $className '#' $field);
  10.     }
  11. }