選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

14 行
248B

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