fix client onetime

This commit is contained in:
Tokumeikoi
2020-03-17 19:00:33 +08:00
parent 96f562a9e7
commit 03e0b5d087
2 changed files with 21 additions and 1 deletions

View File

@ -0,0 +1,20 @@
<?php
namespace App\Services;
use App\Models\Order;
class OrderService
{
public $order;
public function __construct(Order $order)
{
$this->order = $order;
}
public function cancel()
{
}
}