server/src/app/Repositories/DocumentRepository.php
changeset 502 74fba571487e
parent 326 226d5b17a119
equal deleted inserted replaced
501:7b2dcd2b31c1 502:74fba571487e
    32 
    32 
    33 
    33 
    34     /**
    34     /**
    35      * Resolve lexvo id for all documents in the list
    35      * Resolve lexvo id for all documents in the list
    36      * this allow to optimise the call of lexvo repository
    36      * this allow to optimise the call of lexvo repository
       
    37      * This will modify the documents.
       
    38      *
       
    39      * @param array
       
    40      * @return nothing
    37      */
    41      */
    38     public function resolveLexvo(Array $docList);
    42     public function resolveLexvo(Array $docList);
    39 
    43 
       
    44     /**
       
    45      * Add country info for document.
       
    46      * This modify the document
       
    47      *
       
    48      * @param $doc the document instance
       
    49      * @return nothing
       
    50      */
       
    51     public function addCountryInfo($doc);
       
    52 
    40     public function getCount();
    53     public function getCount();
    41 }
    54 }