Example #1
0
 public function getCollection(Context $context)
 {
     $context->depends('@norm');
     if (null === $this->collection) {
         $this->collection = $context['@norm']->factory($context, $this['collection']);
     }
     return $this->collection;
 }