mirror of
https://github.com/v2board/v2board.git
synced 2025-06-12 12:37:54 +08:00
fix client onetime
This commit is contained in:
20
app/Services/OrderService.php
Normal file
20
app/Services/OrderService.php
Normal 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()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user