mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-21 21:44:01 +00:00
An api requested by WePost for air shipment for inbound notification
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\WePost;
|
||||
|
||||
use App\Classes\Modules\WePost\ControllersLogic\ProcessWePostNotificationLogic;
|
||||
use Illuminate\Http\JsonResponse;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class ProcessWePostNotificationController
|
||||
{
|
||||
/**
|
||||
* @param Request $request
|
||||
* @param ProcessWePostNotificationLogic $logic
|
||||
* @return JsonResponse
|
||||
*/
|
||||
public function process(Request $request, ProcessWePostNotificationLogic $logic): JsonResponse
|
||||
{
|
||||
return $logic->execute($request);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user