Exemplo n.º 1
0
 private function findACollection(InputInterface $input, $storage)
 {
     $collectionRepository = new CollectionRepository($storage);
     return $collectionRepository->findBy(['name' => $input->getArgument('collection')], ['order by name']);
 }