Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

21 lines
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. }