vendor/doctrine/orm/lib/Doctrine/ORM/Query/Expr/From.php line 12

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Doctrine\ORM\Query\Expr;
  4. /**
  5.  * Expression class for DQL from.
  6.  *
  7.  * @link    www.doctrine-project.org
  8.  */
  9. class From
  10. {
  11.     /** @var string */
  12.     protected $from;
  13.     /** @var string */
  14.     protected $alias;
  15.     /** @var string|null */
  16.     protected $indexBy;
  17.     /**
  18.      * @param string $from    The class name.
  19.      * @param string $alias   The alias of the class.
  20.      * @param string $indexBy The index for the from.
  21.      */
  22.     public function __construct($from$alias$indexBy null)
  23.     {
  24.         $this->from    $from;
  25.         $this->alias   $alias;
  26.         $this->indexBy $indexBy;
  27.     }
  28.     /**
  29.      * @return string
  30.      */
  31.     public function getFrom()
  32.     {
  33.         return $this->from;
  34.     }
  35.     /**
  36.      * @return string
  37.      */
  38.     public function getAlias()
  39.     {
  40.         return $this->alias;
  41.     }
  42.     /**
  43.      * @return string|null
  44.      */
  45.     public function getIndexBy()
  46.     {
  47.         return $this->indexBy;
  48.     }
  49.     /**
  50.      * @return string
  51.      */
  52.     public function __toString()
  53.     {
  54.         return $this->from ' ' $this->alias .
  55.                 ($this->indexBy ' INDEX BY ' $this->indexBy '');
  56.     }
  57. }