Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

14 lines
305B

  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\Credit;
  3. class CreditHistoryStore implements CreditHistoryStoreInterface
  4. {
  5. protected CreditHistoryRepositoryQueryInterface $query;
  6. public function __construct(CreditHistoryRepositoryQueryInterface $query)
  7. {
  8. $this->query = $query;
  9. }
  10. }