Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
1234567891011121314151617181920212223
  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\File;
  3. use Lc\CaracoleBundle\Repository\MerchantStoreTrait;
  4. use Lc\SovBundle\Repository\AbstractStore;
  5. class DocumentStore extends AbstractStore
  6. {
  7. use MerchantStoreTrait;
  8. protected DocumentRepositoryQuery $query;
  9. public function __construct(DocumentRepositoryQuery $query)
  10. {
  11. $this->query = $query;
  12. }
  13. public function getOneLatestByType(string $documentType)
  14. {
  15. // @TODO : à écrire
  16. }
  17. }