TYPO3 CMS  TYPO3_6-2
Ordering.php
Go to the documentation of this file.
1 <?php
3 
20 class Ordering implements OrderingInterface {
21 
25  protected $operand;
26 
30  protected $order;
31 
39  $this->operand = $operand;
40  $this->order = $order;
41  }
42 
48  public function getOperand() {
49  return $this->operand;
50  }
51 
57  public function getOrder() {
58  return $this->order;
59  }
60 }
__construct(DynamicOperandInterface $operand, $order=\TYPO3\CMS\Extbase\Persistence\QueryInterface::ORDER_ASCENDING)
Definition: Ordering.php:38