領収証発行サービス
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 line
208B

  1. <?php
  2. namespace App\Logic\Contract;
  3. class CreateManager extends ContractManager
  4. {
  5. public function create(): array
  6. {
  7. $messages = [];
  8. $this->save();
  9. return $messages;
  10. }
  11. }