CheckoutInterface.php 104 B

12345678
  1. <?php
  2. namespace App\Shop\Carts\Requests;
  3. interface CheckoutInterface
  4. {
  5. public function rules();
  6. }