vendor/doctrine/orm/lib/Doctrine/ORM/Query/Expr/OrderBy.php line 31

Open in your IDE?
  1. <?php
  2. /*
  3.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  4.  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  5.  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  6.  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  7.  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  8.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  9.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  10.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  11.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  12.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  13.  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  14.  *
  15.  * This software consists of voluntary contributions made by many individuals
  16.  * and is licensed under the MIT license. For more information, see
  17.  * <http://www.doctrine-project.org>.
  18.  */
  19. namespace Doctrine\ORM\Query\Expr;
  20. use function count;
  21. use function implode;
  22. /**
  23.  * Expression class for building DQL Order By parts.
  24.  *
  25.  * @link    www.doctrine-project.org
  26.  */
  27. class OrderBy
  28. {
  29.     /** @var string */
  30.     protected $preSeparator '';
  31.     /** @var string */
  32.     protected $separator ', ';
  33.     /** @var string */
  34.     protected $postSeparator '';
  35.     /** @var string[] */
  36.     protected $allowedClasses = [];
  37.     /** @psalm-var list<string> */
  38.     protected $parts = [];
  39.     /**
  40.      * @param string|null $sort
  41.      * @param string|null $order
  42.      */
  43.     public function __construct($sort null$order null)
  44.     {
  45.         if ($sort) {
  46.             $this->add($sort$order);
  47.         }
  48.     }
  49.     /**
  50.      * @param string      $sort
  51.      * @param string|null $order
  52.      *
  53.      * @return void
  54.      */
  55.     public function add($sort$order null)
  56.     {
  57.         $order         = ! $order 'ASC' $order;
  58.         $this->parts[] = $sort ' ' $order;
  59.     }
  60.     /**
  61.      * @return int
  62.      */
  63.     public function count()
  64.     {
  65.         return count($this->parts);
  66.     }
  67.     /**
  68.      * @psalm-return list<string>
  69.      */
  70.     public function getParts()
  71.     {
  72.         return $this->parts;
  73.     }
  74.     /**
  75.      * @return string
  76.      */
  77.     public function __toString()
  78.     {
  79.         return $this->preSeparator implode($this->separator$this->parts) . $this->postSeparator;
  80.     }
  81. }