/**
  * @param \ThinkopenAt\TimeFlies\Domain\Model\Category $category
  * @return void
  */
 public function indexAction(Category $category = NULL)
 {
     $this->view->assign('currentCategory', $category);
     $this->view->assign('subCategories', $this->categoryRepository->findByParent($category));
     $this->view->assign('items', $this->itemRepository->findByCategory($category));
 }