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

21 行
309B

  1. <?php
  2. namespace App\Kintone\Repositories;
  3. use App\Kintone\Models\Receipt;
  4. class ReceiptRepositoryData
  5. {
  6. public function __construct(
  7. public Receipt $receipt,
  8. ) {
  9. }
  10. public function toArray(): array
  11. {
  12. return [
  13. ...$this->receipt->toArray(),
  14. ];
  15. }
  16. }