Example #1
0
 protected function applyDefaultOrder(ICollection $collection)
 {
     if (isset($this->metadata->args->relationship['order'])) {
         return $collection->orderBy($this->metadata->args->relationship['order'][0], $this->metadata->args->relationship['order'][1]);
     } else {
         return $collection;
     }
 }