File "OrderBy.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/mailpoet/vendor-prefixed/doctrine/orm/lib/Doctrine/ORM/Query/Expr/OrderBy.php
File size: 803 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
declare (strict_types=1);
namespace MailPoetVendor\Doctrine\ORM\Query\Expr;
if (!defined('ABSPATH')) exit;
use function count;
use function implode;
class OrderBy
{
 protected $preSeparator = '';
 protected $separator = ', ';
 protected $postSeparator = '';
 protected $allowedClasses = [];
 protected $parts = [];
 public function __construct($sort = null, $order = null)
 {
 if ($sort) {
 $this->add($sort, $order);
 }
 }
 public function add($sort, $order = null)
 {
 $order = !$order ? 'ASC' : $order;
 $this->parts[] = $sort . ' ' . $order;
 }
 public function count()
 {
 return count($this->parts);
 }
 public function getParts()
 {
 return $this->parts;
 }
 public function __toString()
 {
 return $this->preSeparator . implode($this->separator, $this->parts) . $this->postSeparator;
 }
}