Entity/DocumentTagRepository.php
changeset 34 21fab44f46fe
parent 8 7d2fb5d7c9ff
child 57 186c4121c7b3
--- a/Entity/DocumentTagRepository.php	Wed Nov 09 16:25:13 2011 +0100
+++ b/Entity/DocumentTagRepository.php	Thu Nov 17 11:29:26 2011 +0100
@@ -67,12 +67,24 @@
         return $qb;
     }
     
+    /**
+     *
+     * Enter description here ...
+     * @param unknown_type $external_id
+     * @param array $filter_array
+     */
     public function findByDocumentExternalId($external_id, array $filter_array=null)
     {
         $qb = $this->createQueryBuilderByDocumentExternalId($external_id, $filter_array);
         return $qb->getQuery()->getResult();
     }
     
+    /**
+     *
+     * Enter description here ...
+     * @param unknown_type $external_id
+     * @param array $filter_array
+     */
     public function findOneByDocumentExternalId($external_id, array $filter_array=null) {
         
         $qb = $this->createQueryBuilderByDocumentExternalId($external_id, $filter_array)->setMaxResults(1);