mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 21:44:51 +00:00
Change namespace
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Crater\Http\Controllers\V1\Admin\Payment;
|
||||
namespace InvoiceShelf\Http\Controllers\V1\Admin\Payment;
|
||||
|
||||
use Crater\Http\Controllers\Controller;
|
||||
use Crater\Http\Requests\PaymentMethodRequest;
|
||||
use Crater\Http\Resources\PaymentMethodResource;
|
||||
use Crater\Models\PaymentMethod;
|
||||
use InvoiceShelf\Http\Controllers\Controller;
|
||||
use InvoiceShelf\Http\Requests\PaymentMethodRequest;
|
||||
use InvoiceShelf\Http\Resources\PaymentMethodResource;
|
||||
use InvoiceShelf\Models\PaymentMethod;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class PaymentMethodsController extends Controller
|
||||
@@ -48,7 +48,7 @@ class PaymentMethodsController extends Controller
|
||||
/**
|
||||
* Display the specified resource.
|
||||
*
|
||||
* @param \Crater\Models\PaymentMethod $paymentMethod
|
||||
* @param \InvoiceShelf\Models\PaymentMethod $paymentMethod
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function show(PaymentMethod $paymentMethod)
|
||||
@@ -62,7 +62,7 @@ class PaymentMethodsController extends Controller
|
||||
* Update the specified resource in storage.
|
||||
*
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @param \Crater\Models\PaymentMethod $paymentMethod
|
||||
* @param \InvoiceShelf\Models\PaymentMethod $paymentMethod
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function update(PaymentMethodRequest $request, PaymentMethod $paymentMethod)
|
||||
@@ -77,7 +77,7 @@ class PaymentMethodsController extends Controller
|
||||
/**
|
||||
* Remove the specified resource from storage.
|
||||
*
|
||||
* @param \Crater\Models\PaymentMethod $paymentMethod
|
||||
* @param \InvoiceShelf\Models\PaymentMethod $paymentMethod
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function destroy(PaymentMethod $paymentMethod)
|
||||
|
||||
Reference in New Issue
Block a user